Skip to content

Commit

Permalink
fixup! Implement complex join pushdown in JDBC connectors
Browse files Browse the repository at this point in the history
  • Loading branch information
findepi committed Dec 8, 2023
1 parent c8557f8 commit bfbc2b2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ public Optional<JoinApplicationResult<ConnectorTableHandle>> applyJoin(
.collect(toImmutableMap(Entry::getKey, entry -> newLeftColumns.get((JdbcColumnHandle) entry.getValue()))))
.putAll(rightAssignments.entrySet().stream()
.collect(toImmutableMap(Entry::getKey, entry -> newRightColumns.get((JdbcColumnHandle) entry.getValue()))))
.build();
.buildOrThrow();

ImmutableList.Builder<ParameterizedExpression> joinConditions = ImmutableList.builder();
for (ConnectorExpression conjunct : extractConjuncts(joinCondition)) {
Expand Down

0 comments on commit bfbc2b2

Please sign in to comment.