We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d3932f commit 3c64236Copy full SHA for 3c64236
src/query/service/src/pipelines/processors/transforms/new_hash_join/memory/outer_left_join.rs
@@ -138,9 +138,7 @@ impl Join for OuterLeftHashJoin {
138
let probe_data = ProbeData::new(keys, valids, probe_hash_statistics);
139
table.probe(probe_data)
140
}
141
- HashJoinHashTable::NestedLoop(_) => {
142
- todo!()
143
- }
+ HashJoinHashTable::NestedLoop(_) => unreachable!(),
144
HashJoinHashTable::Null => Err(ErrorCode::AbortedQuery(
145
"Aborted query, because the hash table is uninitialized.",
146
)),
0 commit comments