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
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Issue #2378 adds support for ROLLUP and CUBE grouping sets. This is a follow on issue to also support GROUPING SETS, which may require changes to sqlparser-rs and also may require changes to the optimization rules to support Vec<Vec<Expr>>. See optimizer/utils.rs to see where this is not currently supported.
Describe the solution you'd like
Support GROUP BY foo, GROUPING SETS (a (b, c), (c, d, e))
Describe alternatives you've considered
None
Additional context
None
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Issue #2378 adds support for
ROLLUP
andCUBE
grouping sets. This is a follow on issue to also supportGROUPING SETS
, which may require changes to sqlparser-rs and also may require changes to the optimization rules to supportVec<Vec<Expr>>
. Seeoptimizer/utils.rs
to see where this is not currently supported.Describe the solution you'd like
Support
GROUP BY foo, GROUPING SETS (a (b, c), (c, d, e))
Describe alternatives you've considered
None
Additional context
None
The text was updated successfully, but these errors were encountered: