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
Consider AggregateFunction.order_by field -- it is Option<Vec< /*sort expr*/ >> None means "no sorting" but this can be modeled as Some( vec![] ).
Empty collection perfectly describes lack of sorting, so no need to wrap if with optional value.
Consider
AggregateFunction.order_by
field -- it isOption<Vec< /*sort expr*/ >>
None
means "no sorting" but this can be modeled asSome( vec![] )
.Empty collection perfectly describes lack of sorting, so no need to wrap if with optional value.
Remove
Option
and keep justVec
.This can be applied to
AggregateFunction.order_by
ExprFuncBuilder.order_by
based on #12178 (comment) cc @crepererum
The text was updated successfully, but these errors were encountered: