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.
Currently, the query below
SELECTSUM(c1) OVER (ORDER BY c3 RANGE BETWEEN UNBOUNDED PRECEDING AND11 FOLLOWING) as a1
FROM aggregate_test_100
works with WindowAggExec. However, since starting point of above range is always the beginning of the table and most of the aggregators can calculate their result without seeing the whole range at once; we should be able to run above query with BoundedWindowAggExec.
Describe the solution you'd like
I want above query to run with BoundedWindowAggExec and it should be able to prune sections in the input table where the aggregator result is calculated.
Describe alternatives you've considered
N.A
Additional context
N.A
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.
Currently, the query below
works with
WindowAggExec
. However, since starting point of above range is always the beginning of the table and most of the aggregators can calculate their result without seeing the whole range at once; we should be able to run above query withBoundedWindowAggExec
.Describe the solution you'd like
I want above query to run with
BoundedWindowAggExec
and it should be able to prune sections in the input table where the aggregator result is calculated.Describe alternatives you've considered
N.A
Additional context
N.A
The text was updated successfully, but these errors were encountered: