Skip to content

Commit 6c78013

Browse files
committed
fix(cubestore): Allowing window functions in cluster send planning
1 parent c79d28c commit 6c78013

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

rust/cubestore/cubestore/src/queryplanner/planning.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1597,6 +1597,7 @@ fn pull_up_cluster_send(mut p: LogicalPlan) -> Result<LogicalPlan, DataFusionErr
15971597
LogicalPlan::Extension { .. } => return Ok(p),
15981598
// These nodes collect results from multiple partitions, return unchanged.
15991599
LogicalPlan::Aggregate { .. }
1600+
| LogicalPlan::Window { .. }
16001601
| LogicalPlan::Repartition { .. }
16011602
| LogicalPlan::Limit { .. } => return Ok(p),
16021603
// Collects results but let's push sort,fetch underneath the input.

0 commit comments

Comments
 (0)