Skip to content

Commit c114770

Browse files
committed
[native] Fix index join type conversion
1 parent c862ca4 commit c114770

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

presto-native-execution/presto_cpp/main/types/PrestoToVeloxQueryPlan.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1159,7 +1159,7 @@ core::JoinType toJoinType(protocol::JoinType type) {
11591159
case protocol::JoinType::FULL:
11601160
return core::JoinType::kFull;
11611161
case protocol::JoinType::SOURCE_OUTER:
1162-
return core::JoinType::kInner; // TODO: Map to proper join type.
1162+
return core::JoinType::kLeft;
11631163
}
11641164

11651165
VELOX_UNSUPPORTED("Unknown join type");

0 commit comments

Comments
 (0)