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 f3e1a5b commit d73a8f9Copy full SHA for d73a8f9
src/query/service/src/pipelines/processors/transforms/hash_join/hash_join_state_impl.rs
@@ -294,6 +294,9 @@ impl HashJoinState for JoinHashTable {
294
}
295
296
let rest_block = self.rest_block()?;
297
+ if rest_block.is_empty() {
298
+ return Ok(blocks.to_vec());
299
+ }
300
let input_block = DataBlock::concat_blocks(&[blocks, &[rest_block]].concat())?;
301
302
if unmatched_build_indexes.is_empty() && self.hash_join_desc.other_predicate.is_none() {
0 commit comments