Java Code Examples for org.apache.calcite.sql.SqlKind#UNION
The following examples show how to use
org.apache.calcite.sql.SqlKind#UNION .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Union.java From Bats with Apache License 2.0 | 5 votes |
protected Union( RelOptCluster cluster, RelTraitSet traits, List<RelNode> inputs, boolean all) { super(cluster, traits, inputs, SqlKind.UNION, all); }
Example 2
Source File: Union.java From calcite with Apache License 2.0 | 5 votes |
protected Union( RelOptCluster cluster, RelTraitSet traits, List<RelNode> inputs, boolean all) { super(cluster, traits, inputs, SqlKind.UNION, all); }
Example 3
Source File: SetOp.java From Bats with Apache License 2.0 | 4 votes |
/** * Creates a SetOp by parsing serialized output. */ protected SetOp(RelInput input) { this(input.getCluster(), input.getTraitSet(), input.getInputs(), SqlKind.UNION, input.getBoolean("all", false)); }
Example 4
Source File: SetOp.java From calcite with Apache License 2.0 | 4 votes |
/** * Creates a SetOp by parsing serialized output. */ protected SetOp(RelInput input) { this(input.getCluster(), input.getTraitSet(), input.getInputs(), SqlKind.UNION, input.getBoolean("all", false)); }