Skip to content

Commit

Permalink
use oneside opt
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Dec 1, 2024
1 parent 2166913 commit 6dffc0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stream/src/executor/hash_join.rs
Original file line number Diff line number Diff line change
Expand Up @@ -766,14 +766,14 @@ impl<K: HashKey, S: StateStore, const T: JoinTypePrimitive> HashJoinExecutor<K,
fn eq_join_left(
args: EqJoinArgs<'_, K, S>,
) -> impl Stream<Item = Result<StreamChunk, StreamExecutorError>> + '_ {
Self::eq_join_oneside::<{ SideType::Left }>(args)
Self::eq_join_oneside_opt::<{ SideType::Left }>(args)
}

/// Used to forward `eq_join_oneside` to show join side in stack.
fn eq_join_right(
args: EqJoinArgs<'_, K, S>,
) -> impl Stream<Item = Result<StreamChunk, StreamExecutorError>> + '_ {
Self::eq_join_oneside::<{ SideType::Right }>(args)
Self::eq_join_oneside_opt::<{ SideType::Right }>(args)
}

/// Fetch and match rows
Expand Down

0 comments on commit 6dffc0d

Please sign in to comment.