Skip to content

Commit

Permalink
Update mod.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
berkaysynnada committed Jan 29, 2025
1 parent 481b5b4 commit 29af731
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions datafusion/physical-plan/src/windows/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -354,14 +354,12 @@ pub(crate) fn window_equivalence_properties(
{
aggregate_udf_window_expr
.add_equal_orderings(&mut window_eq_properties, window_expr_index);
} else if let Some(_) = expr.as_any().downcast_ref::<SlidingAggregateWindowExpr>()
{
// TODO: SlidingAggregateWindowExpr cannot introduce a new ordering yet
// because we cannot determine whether the window's incoming elements
// are greater than its outgoing elements. However, we do have
// the necessary tools to support this, and we can extend support
// for these cases in the future.
}
// TODO: SlidingAggregateWindowExpr cannot introduce a new ordering yet
// because we cannot determine whether the window's incoming elements
// are greater than its outgoing elements. However, we do have
// the necessary tools to support this, and we can extend support
// for these cases in the future.
}
window_eq_properties
}
Expand Down

0 comments on commit 29af731

Please sign in to comment.