Skip to content

Commit 2d3932f

Browse files
committed
fix
1 parent 76e5c0d commit 2d3932f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/query/service/src/physical_plans/physical_hash_join.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1203,7 +1203,7 @@ impl PhysicalPlanBuilder {
12031203
build_schema: &DataSchema,
12041204
target_schema: &DataSchema,
12051205
) -> Result<Option<NestedLoopFilterInfo>> {
1206-
if matches!(join.join_type, JoinType::Inner) {
1206+
if !matches!(join.join_type, JoinType::Inner) {
12071207
return Ok(None);
12081208
}
12091209

0 commit comments

Comments
 (0)