(SqlNodeList list)
| 104 | } |
| 105 | |
| 106 | static SqlNodeList stripList(SqlNodeList list) { |
| 107 | return list.stream().map(SqlPivot::strip) |
| 108 | .collect(SqlNode.toList(list.pos)); |
| 109 | } |
| 110 | |
| 111 | /** Converts a single-element SqlNodeList to its constituent node. |
| 112 | * For example, "(1)" becomes "1"; |