Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion ydb/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ def _pb_to_void(type_pb, value_pb, table_client_settings):
"dict_type": _pb_to_dict,
"struct_type": _pb_to_struct,
"void_type": _pb_to_void,
"empty_list_type": _pb_to_list,
"empty_dict_type": _pb_to_dict,
}


Expand Down Expand Up @@ -295,7 +297,7 @@ def __init__(self, columns, rows, truncated, snapshot=None):
@classmethod
def from_message(cls, message, table_client_settings=None, snapshot=None):
rows = []
# prepare columnn parsers before actuall parsing
# prepare column parsers before actuall parsing
column_parsers = []
if len(message.rows) > 0:
for column in message.columns:
Expand Down