Parse a single FlightData message into a RecordBatch
Flight sends data in a streaming format where:
The dataHeader is a raw flatbuffer Message (without IPC framing). We need to frame it before passing to apache-arrow.
IPC Message flatbuffer (without continuation/length prefix)
IPC Message body (raw data buffers)
Schema to use for parsing (from FlightInfo or first message)
Parse a single FlightData message into a RecordBatch
Flight sends data in a streaming format where:
The dataHeader is a raw flatbuffer Message (without IPC framing). We need to frame it before passing to apache-arrow.