From cc80d543e65e9f7c701f52722551965ae9fe055e Mon Sep 17 00:00:00 2001 From: Adam Holmberg Date: Fri, 11 Sep 2015 09:10:51 -0500 Subject: [PATCH] key typo in metadata parsing --- cassandra/metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cassandra/metadata.py b/cassandra/metadata.py index 8705b94a..81b4ba71 100644 --- a/cassandra/metadata.py +++ b/cassandra/metadata.py @@ -2105,7 +2105,7 @@ class SchemaParserV3(SchemaParserV22): table_meta.clustering_key.append(table_meta.columns[r.get('column_name')]) for col_row in (r for r in col_rows - if r.get('kind', None) not in ('parition_key', 'clustering')): + if r.get('kind', None) not in ('partition_key', 'clustering')): column_meta = self._build_column_metadata(table_meta, col_row) if not compact_static or column_meta.is_static: # for compact static tables, we omit the clustering key and value, and only add the logical columns.