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

Method copy

core/src/main/java/org/apache/calcite/rel/core/Join.java:334–338  ·  view source on GitHub ↗
(RelTraitSet traitSet, List<RelNode> inputs)

Source from the content-addressed store, hash-verified

332 }
333
334 @Override public Join copy(RelTraitSet traitSet, List<RelNode> inputs) {
335 assert inputs.size() == 2;
336 return copy(traitSet, getCondition(), inputs.get(0), inputs.get(1),
337 joinType, isSemiJoinDone());
338 }
339
340 /**
341 * Creates a copy of this join, overriding condition, system fields and

Callers 15

acceptMethod · 0.95
onMatchMethod · 0.95
onMatchMethod · 0.95
onMatchMethod · 0.95
onMatchMethod · 0.95
onMatchMethod · 0.95
matchJoinMethod · 0.95
onMatchMethod · 0.95
onMatchMethod · 0.95
onMatchMethod · 0.95
onMatchMethod · 0.95
onMatchMethod · 0.95

Calls 4

getConditionMethod · 0.95
isSemiJoinDoneMethod · 0.95
sizeMethod · 0.65
getMethod · 0.65

Tested by

no test coverage detected