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

Method in

core/src/main/java/org/apache/calcite/rex/RexSubQuery.java:53–56  ·  view source on GitHub ↗

Creates an IN sub-query.

(RelNode rel, ImmutableList<RexNode> nodes)

Source from the content-addressed store, hash-verified

51
52 /** Creates an IN sub-query. */
53 public static RexSubQuery in(RelNode rel, ImmutableList<RexNode> nodes) {
54 final RelDataType type = type(rel, nodes);
55 return new RexSubQuery(type, SqlStdOperatorTable.IN, nodes, rel);
56 }
57
58 /** Creates a SOME sub-query.
59 *

Callers 3

inMethod · 0.95
createSubqueryMethod · 0.95
someMethod · 0.95

Calls 1

typeMethod · 0.95

Tested by

no test coverage detected