Polyglot SQL API Documentation - v0.1.0
    Preparing search index...

    Type Alias GroupBy

    Represent a GROUP BY clause with optional ALL/DISTINCT and WITH TOTALS modifiers.

    The expressions list may contain plain columns, ordinal positions, ROLLUP/CUBE/GROUPING SETS expressions, or the special empty-set ().

    type GroupBy = {
        all: boolean | null;
        expressions: Expression[];
        totals: boolean;
    }
    Index

    Properties

    all: boolean | null

    GROUP BY modifier: Some(true) = ALL, Some(false) = DISTINCT, None = no modifier

    expressions: Expression[]

    The grouping expressions.

    totals: boolean

    ClickHouse: WITH TOTALS modifier