Skip to content

Commit

Permalink
Revert one more change.
Browse files Browse the repository at this point in the history
  • Loading branch information
rcaudy committed Dec 1, 2021
1 parent c0be649 commit 2731f09
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ public static Stream<TableReference> getSourceIds(Operation op) {
return Stream.of(op.getNaturalJoin().getLeftId(), op.getNaturalJoin().getRightId());
case EXACT_JOIN:
return Stream.of(op.getExactJoin().getLeftId(), op.getExactJoin().getRightId());
case LEFT_JOIN:
return Stream.of(op.getLeftJoin().getLeftId(), op.getLeftJoin().getRightId());
case AS_OF_JOIN:
return Stream.of(op.getAsOfJoin().getLeftId(), op.getAsOfJoin().getRightId());
case COMBO_AGGREGATE:
Expand Down

0 comments on commit 2731f09

Please sign in to comment.