Contains parameters that optimize/drive creation of the query result Table.

interface TableOptions {
    accept?: AcceptRowFunction | AcceptRowFunction[];
    columns?: string[];
    computeFluxGroupKeyUnion?: boolean;
    computeResultColumnNames?: boolean;
    maxTableLength?: number;
}

Properties

Accept allows to accept/reject specific rows or terminate processing.

columns?: string[]

column keys to collect in the table, undefined means all columns

computeFluxGroupKeyUnion?: boolean

compute also fluxGroupKeyUnion

computeResultColumnNames?: boolean

compute also resultColumnNames

maxTableLength?: number

Sets maximum table length, QUERY_MAX_TABLE_LENGTH when undefined.

MMNEPVFCICPMFPCPTTAAATR