Skip to content

Commit

Permalink
fix compile error caused by rebasing
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Chien <[email protected]>
  • Loading branch information
stdrc committed Jun 3, 2024
1 parent edc48ef commit 8ac74bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/expr/impl/src/window_function/buffer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ pub(super) trait WindowImpl {
/// Recalculate the left and right indices of the current window, according to the latest
/// `curr_idx` and the hint.
fn recalculate_left_right(
&self,
&mut self,
window: BufferRefMut<'_, Self::Key, Self::Value>,
hint: RecalculateHint,
);
Expand Down Expand Up @@ -319,7 +319,7 @@ impl<K: Ord, V: Clone> WindowImpl for RowsWindow<K, V> {
}

fn recalculate_left_right(
&self,
&mut self,
window: BufferRefMut<'_, Self::Key, Self::Value>,
_hint: RecalculateHint,
) {
Expand Down Expand Up @@ -401,7 +401,7 @@ impl<V: Clone> WindowImpl for RangeWindow<V> {
}

fn recalculate_left_right(
&self,
&mut self,
window: BufferRefMut<'_, Self::Key, Self::Value>,
_hint: RecalculateHint,
) {
Expand Down

0 comments on commit 8ac74bc

Please sign in to comment.