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

    Interface AppendRequestMessage

    Request to append a DataChunk into a DuckDB table.

    interface AppendRequestMessage {
        appendChunk: QuackDataChunk;
        clientQueryId?: bigint;
        connectionId?: string;
        schemaName?: string;
        tableName: string;
        type: APPEND_REQUEST;
    }

    Hierarchy (View Summary)

    Index

    Properties

    appendChunk: QuackDataChunk

    DataChunk to append.

    clientQueryId?: bigint

    Client-assigned query/request id.

    connectionId?: string

    Server-assigned connection id for connection-scoped messages.

    schemaName?: string

    Optional schema name.

    tableName: string

    Target table name.

    Concrete message type id.