Skip to content

Commit 77ecfbd

Browse files
committed
work in progress
1 parent b432a67 commit 77ecfbd

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/query_farm_server_base/server.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -520,6 +520,9 @@ def do_action(
520520
packed_data = msgpack.packb(schemas_result.model_dump())
521521
compressor = zstd.ZstdCompressor(level=SCHEMA_TOP_LEVEL_COMPRESSION_LEVEL)
522522
compressed_data = compressor.compress(packed_data)
523+
524+
unpacked_data = msgpack.unpackb(packed_data)
525+
print(unpacked_data)
523526
return iter([msgpack.packb([len(packed_data), compressed_data])])
524527
elif action.type == "remove_column":
525528
self.action_remove_column(

0 commit comments

Comments
 (0)