zeroshade commented on issue #39730: URL: https://github.com/apache/arrow/issues/39730#issuecomment-1904448242
If you use the IPC writer, that's what it does. It writes the schema IPC message first and then record batch IPC messages. You could use a `bytes.Buffer` as the sink to write to and that'll give you the schema IPC message + recordBatch IPC message one after the other. In theory you shouldn't necessarily need an explicit function to write the record batch message. But it also shouldn't be difficult to add either. Do you wanna take a stab at it? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
