QuestDB JavaScript Client - v5.0.0
    Preparing search index...

    Interface QwpColumnBuffer

    interface QwpColumnBuffer {
        committedValues: number;
        decimalScale?: number;
        geohashPrecision?: number;
        name: string;
        nulls: boolean[];
        size: number;
        type: QwpColumnType;
        values: unknown[];
    }
    Index

    Properties

    committedValues: number

    Length values had when the last row completed -- everything past it belongs to the row in progress. rollbackRow() truncates to this mark; see the failure it exists to prevent there. Maintained by QwpTableBuffer.

    decimalScale?: number
    geohashPrecision?: number
    name: string
    nulls: boolean[]

    One entry per row; true means NULL.

    size: number

    Rows accounted for so far, including nulls.

    values: unknown[]

    Non-null values only; QWP compacts values around the null bitmap. LONG, DATE, and TIMESTAMP values accept safe integer numbers or signed int64 bigints. LONG_ARRAY applies the same rule to every element.