@qualithm/arrow-flight-client - v0.1.4
    Preparing search index...

    Type Alias DecodedFlightData

    DecodedFlightData:
        | { schema: Schema; type: "schema" }
        | { batch: RecordBatch; type: "batch" }
        | { type: "empty" }

    Result of decoding a single FlightData message.

    Type Declaration

    • { schema: Schema; type: "schema" }
      • schema: Schema

        Decoded Arrow schema.

      • type: "schema"

        Schema message type.

    • { batch: RecordBatch; type: "batch" }
      • batch: RecordBatch

        Decoded Arrow record batch.

      • type: "batch"

        Record batch message type.

    • { type: "empty" }
      • type: "empty"

        Empty message type (keep-alive).

    • schema: Message contained schema information
    • batch: Message contained a record batch
    • empty: Message contained no data (keep-alive)