| 115 | } |
| 116 | |
| 117 | void setTableFunction(ASTPtr table_function_) |
| 118 | { |
| 119 | children.emplace_back(table_function_); |
| 120 | table_function = std::move(table_function_); |
| 121 | } |
| 122 | |
| 123 | void setTableOverride(ASTPtr table_override_) |
| 124 | { |
no test coverage detected