rkyleg opened a new issue, #533: URL: https://github.com/apache/arrow-go/issues/533
Adding these lines at https://github.com/apache/arrow-go/blob/3ae84281674622d33b4617c878e099d13d4a1113/arrow/ipc/file_reader.go#L490 (and replacing line 495) adds the custom metadata to the RecordBatch from the record batches message. ``` go customMeta, err := metadataFromFB(msg) if err != nil { panic(err) } newSchema := arrow.NewSchema(schema.Fields(), &customMeta) return array.NewRecordBatch(newSchema, cols, rows) ``` -- 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]
