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
Today if the given aggregation function is pushed down into the connector both name and alias (if declared for function) are pushed down to the applyAggregation(). Alias should be resolved to name instead.
I.e. when variance() or var_samp() (alias of variance()) aggregation functions (implemented in VarianceAggregation) are pushed down to the connector, AggregateFunction.functionName will contain either variance or var_samp but only canonical name should be used (variance as var_samp is an alias of variance)
Today if the given aggregation function is pushed down into the connector both name and alias (if declared for function) are pushed down to the
applyAggregation()
. Alias should be resolved to name instead.relates to #6736
The text was updated successfully, but these errors were encountered: