You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for the SQL grouping function that is used with group by
statements. The SQL grouping function typically has a single column
parameter. However, many dialects also provide a grouping_id function,
which behaves as an extended grouping function, allowing multiple
parameters to be specified.
Calcite treats grouping and grouing_id as synonyms and allows multiple
parameters for either function name. This implementation follows the
Calcite model by allowing multiple parameters. The behavior for a single
parameter should be the same as grouping, while multiple parameters
should behave the same as grouping_id.
Signed-off-by: Mark S. Lewis <[email protected]>
0 commit comments