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
This commit fixes a test-only assertion failure due to the GroupBy provided
ordering logic relying on ordering simplification rules. The assertion errors
happened because the provided ordering logic expected that a required ordering
would only ever contain grouping columns. In reality, it is possible for the
ordering to include `ConstAgg` and other "pass-through" columns. However,
references to these columns are usually removed by rules like
`SimplifyGroupByOrdering` because they are constant within a given group.
Since the failure only occurs with rules disabled and only in test builds,
there is no release note.
Fixes#137508
Release note: None
0 commit comments