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

    Interface HugeIntParts

    Lower and upper 64-bit words used to represent DuckDB HUGEINT values.

    interface HugeIntParts {
        lower: bigint;
        upper: bigint;
    }
    Index

    Properties

    Properties

    lower: bigint

    Low 64 bits, interpreted as unsigned.

    upper: bigint

    High 64 bits, interpreted as signed or unsigned depending on context.