@quack-protocol/sdk - v0.1.0
    Preparing search index...

    Interface PrepareResponseMessage

    Response containing result schema, initial chunks, and fetch state.

    interface PrepareResponseMessage {
        clientQueryId?: bigint;
        connectionId?: string;
        needsMoreFetch: boolean;
        resultNames: string[];
        results: QuackDataChunk[];
        resultTypes: LogicalType[];
        resultUuid: HugeIntParts;
        type: PREPARE_RESPONSE;
    }

    Hierarchy (View Summary)

    Index

    Properties

    clientQueryId?: bigint

    Client-assigned query/request id.

    connectionId?: string

    Server-assigned connection id for connection-scoped messages.

    needsMoreFetch: boolean

    Whether more result chunks can be fetched.

    resultNames: string[]

    Result column names.

    results: QuackDataChunk[]

    Initial result chunks.

    resultTypes: LogicalType[]

    Logical types for result columns.

    resultUuid: HugeIntParts

    Server-side result id for subsequent fetch requests.

    Concrete message type id.