MCPcopy Create free account
hub / github.com/apache/calcite / clone

Method clone

core/src/main/java/org/apache/calcite/rex/RexCall.java:292–294  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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) {

Callers 15

convertMethod · 0.95
simplifyNotMethod · 0.95
pushPredicateIntoCaseMethod · 0.95
stripCastFromStringMethod · 0.95
leftShiftMethod · 0.45
flatList_Method · 0.45
editMethod · 0.45
editMethod · 0.45
simplifyCoalesceMethod · 0.45
simplifySearchMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected