We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b432a67 commit 77ecfbdCopy full SHA for 77ecfbd
1 file changed
src/query_farm_server_base/server.py
@@ -520,6 +520,9 @@ def do_action(
520
packed_data = msgpack.packb(schemas_result.model_dump())
521
compressor = zstd.ZstdCompressor(level=SCHEMA_TOP_LEVEL_COMPRESSION_LEVEL)
522
compressed_data = compressor.compress(packed_data)
523
+
524
+ unpacked_data = msgpack.unpackb(packed_data)
525
+ print(unpacked_data)
526
return iter([msgpack.packb([len(packed_data), compressed_data])])
527
elif action.type == "remove_column":
528
self.action_remove_column(
0 commit comments