Skip to content

Commit 3c64236

Browse files
committed
x
1 parent 2d3932f commit 3c64236

File tree

1 file changed

+1
-3
lines changed
  • src/query/service/src/pipelines/processors/transforms/new_hash_join/memory

1 file changed

+1
-3
lines changed

src/query/service/src/pipelines/processors/transforms/new_hash_join/memory/outer_left_join.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,7 @@ impl Join for OuterLeftHashJoin {
138138
let probe_data = ProbeData::new(keys, valids, probe_hash_statistics);
139139
table.probe(probe_data)
140140
}
141-
HashJoinHashTable::NestedLoop(_) => {
142-
todo!()
143-
}
141+
HashJoinHashTable::NestedLoop(_) => unreachable!(),
144142
HashJoinHashTable::Null => Err(ErrorCode::AbortedQuery(
145143
"Aborted query, because the hash table is uninitialized.",
146144
)),

0 commit comments

Comments
 (0)