We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 34fd3fe + 4dd4614 commit 4b82dedCopy full SHA for 4b82ded
kvdbclient/bigtable/utils.py
@@ -27,7 +27,10 @@ def partial_row_data_to_column_dict(
27
new_column_dict = {}
28
for family_id, column_dict in partial_row_data._cells.items():
29
for column_key, column_values in column_dict.items():
30
- column = _from_key(family_id, column_key)
+ try:
31
+ column = _from_key(family_id, column_key)
32
+ except KeyError:
33
+ continue
34
new_column_dict[column] = column_values
35
return new_column_dict
36
0 commit comments