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

Method sequence

core/src/main/java/org/apache/calcite/tools/Programs.java:148–150  ·  view source on GitHub ↗

Creates a program that executes a sequence of programs.

(Program... programs)

Source from the content-addressed store, hash-verified

146
147 /** Creates a program that executes a sequence of programs. */
148 public static Program sequence(Program... programs) {
149 return new SequenceProgram(ImmutableList.copyOf(programs));
150 }
151
152 /** Creates a program that executes if a predicate is true. */
153 public static Program conditional(Predicate<RelNode> predicate,

Callers 8

handlerMethod · 0.95
testLeftMarkJoinMethod · 0.95
heuristicJoinOrderMethod · 0.95
measureMethod · 0.95
checkRunMethod · 0.95
testSpaceStringMethod · 0.45

Calls 1

copyOfMethod · 0.65

Tested by 6

handlerMethod · 0.76
testLeftMarkJoinMethod · 0.76
checkRunMethod · 0.76
testSpaceStringMethod · 0.36