(SqlNode node)
| 116 | } |
| 117 | |
| 118 | static ArrayList<SqlNode> flatten(SqlNode node) { |
| 119 | ArrayList<SqlNode> list = new ArrayList<>(); |
| 120 | flatten(node, list); |
| 121 | return list; |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * Returns the <code>n</code>th (0-based) input to a join expression. |