Decode a stream of FlightData messages into an Arrow Table.
Collects all record batches from the stream and combines them into a single table.
Async iterable of FlightData messages
Arrow Table containing all data from the stream
const stream = client.doGetFlightData(ticket)const table = await decodeFlightDataToTable(stream)console.log(`Received table with ${table.numRows} rows`) Copy
const stream = client.doGetFlightData(ticket)const table = await decodeFlightDataToTable(stream)console.log(`Received table with ${table.numRows} rows`)
Decode a stream of FlightData messages into an Arrow Table.
Collects all record batches from the stream and combines them into a single table.