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

    Interface AppendRowsOptions<T>

    Options accepted by row-oriented append calls.

    interface AppendRowsOptions<T extends Record<string, unknown>> {
        batchSize?: number;
        columns?: ColumnSchema<T>;
        schema?: string;
        signal?: AbortSignal;
        timeoutMs?: number;
    }

    Type Parameters

    • T extends Record<string, unknown>

    Hierarchy (View Summary)

    Index

    Properties

    batchSize?: number

    Number of input rows encoded into each append chunk. Defaults to all rows.

    columns?: ColumnSchema<T>

    Column definitions used to encode row values as a DuckDB DataChunk.

    schema?: string

    Optional schema name for the target table.

    signal?: AbortSignal

    Abort signal passed through to the underlying fetch request.

    timeoutMs?: number

    Request timeout in milliseconds.