Creates an IN sub-query.
(RelNode rel, ImmutableList<RexNode> nodes)
| 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 | * |
no test coverage detected