@qualithm/arrow-flight-sql-js - v0.4.3
    Preparing search index...

    Type Alias FlightInfo

    Access coordinates for retrieval of a dataset

    type FlightInfo = {
        appMetadata?: Uint8Array;
        endpoints: FlightEndpoint[];
        flightDescriptor?: FlightDescriptor;
        ordered: boolean;
        schema: Uint8Array;
        totalBytes: bigint;
        totalRecords: bigint;
    }
    Index

    Properties

    appMetadata?: Uint8Array

    Application-defined metadata

    endpoints: FlightEndpoint[]

    Endpoints to consume the flight data

    flightDescriptor?: FlightDescriptor

    The descriptor associated with this info

    ordered: boolean

    Whether endpoints are ordered

    schema: Uint8Array

    Arrow schema in IPC format

    totalBytes: bigint

    Total size in bytes (-1 if unknown)

    totalRecords: bigint

    Total number of records (-1 if unknown)