This commit is contained in:
2026-02-19 12:27:15 +07:00
parent 51e494c48b
commit 7386f8ed0b
11 changed files with 200468 additions and 6 deletions

View File

@@ -483,7 +483,7 @@ function _serialize_data(data::Any, type::String)
elseif type == "dictionary" # JSON data - serialize directly
json_str = JSON.json(data) # Convert Julia data to JSON string
json_str_bytes = Vector{UInt8}(json_str) # Convert JSON string to bytes
return json_str_bytes
return json_str_bytes
elseif type == "table" # Table data - convert to Arrow IPC stream
io = IOBuffer() # Create in-memory buffer
Arrow.write(io, data) # Write data as Arrow IPC stream to buffer