(RexShuttle shuttle)
| 133 | //~ Methods ---------------------------------------------------------------- |
| 134 | |
| 135 | @Override public RelNode accept(RexShuttle shuttle) { |
| 136 | RexNode condition = shuttle.apply(this.condition); |
| 137 | if (this.condition == condition) { |
| 138 | return this; |
| 139 | } |
| 140 | return copy(traitSet, condition, left, right, joinType, isSemiJoinDone()); |
| 141 | } |
| 142 | |
| 143 | public RexNode getCondition() { |
| 144 | return condition; |
no test coverage detected