When we use java or c++, we can easily serialize schema and data separately with ipc method, the code example is as follows:
auto schema_res = arrow::ipc::SerializeSchema(*schema, pool);
auto buffer_res = arrow::ipc::SerializeRecordBatch(*record, write_options);
But in go we don't find a way to serialize schema and data separately.
We need to serialize schema and data separately as per other languages, is there any way to do that?
Component(s)
Go