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

    Type Alias FlightDescriptorInput

    FlightDescriptorInput:
        | { path: string[]; type: "path" }
        | { cmd: Uint8Array; type: "cmd" }

    Descriptor for a Flight — either a path or a command.

    Type Declaration

    • { path: string[]; type: "path" }
      • path: string[]

        Hierarchical path segments identifying the dataset.

      • type: "path"

        Path-based descriptor type.

    • { cmd: Uint8Array; type: "cmd" }
      • cmd: Uint8Array

        Opaque command bytes (e.g., serialised SQL query).

      • type: "cmd"

        Command-based descriptor type.

    • path: Identifies a dataset by hierarchical path (e.g., ["database", "table"])
    • cmd: Identifies a dataset by an opaque command (e.g., serialised SQL query)