Creates a new call to the same operator with different operands. @param type Return type @param operands Operands to call @return New call
(RelDataType type, List<RexNode> operands)
| 290 | * @return New call |
| 291 | */ |
| 292 | public RexCall clone(RelDataType type, List<RexNode> operands) { |
| 293 | return new RexCall(pos, type, op, operands); |
| 294 | } |
| 295 | |
| 296 | private Pair<SqlOperator, List<RexNode>> getNormalized() { |
| 297 | if (this.normalized == null) { |
no outgoing calls
no test coverage detected