(
Ast.ValuesStmt valuesStmt, RelDataType rowType)
| 186 | } |
| 187 | |
| 188 | private ImmutableList<ImmutableList<RexLiteral>> tuples( |
| 189 | Ast.ValuesStmt valuesStmt, RelDataType rowType) { |
| 190 | final ImmutableList.Builder<ImmutableList<RexLiteral>> listBuilder = |
| 191 | ImmutableList.builder(); |
| 192 | for (List<Ast.Node> nodeList : valuesStmt.tupleList) { |
| 193 | listBuilder.add(tuple(nodeList, rowType)); |
| 194 | } |
| 195 | return listBuilder.build(); |
| 196 | } |
| 197 | |
| 198 | private ImmutableList<RexLiteral> tuple(List<Ast.Node> nodeList, |
| 199 | RelDataType rowType) { |