Set query tree node original AST. * This AST will not be modified later. */
| 224 | * This AST will not be modified later. |
| 225 | */ |
| 226 | void setOriginalAST(ASTPtr original_ast_value) |
| 227 | { |
| 228 | original_ast = std::move(original_ast_value); |
| 229 | } |
| 230 | |
| 231 | /** If query tree has original AST format it for error message. |
| 232 | * Otherwise exception is thrown. |
no outgoing calls
no test coverage detected