Interface DuckDBQueryConfig

interface DuckDBQueryConfig {
    castBigIntToDouble?: boolean;
    castDecimalToDouble?: boolean;
    castDurationToTime64?: boolean;
    castTimestampToDate?: boolean;
    queryPollingInterval?: number;
}

Properties

castBigIntToDouble?: boolean

Cast BigInt to Double?

castDecimalToDouble?: boolean

Cast Decimal to Double?

castDurationToTime64?: boolean

Cast Timestamp to Date64?

castTimestampToDate?: boolean

Cast Timestamp to Date64?

queryPollingInterval?: number

The polling interval for queries

Generated using TypeDoc