| 357 | } |
| 358 | |
| 359 | String IQueryTreeNode::formatOriginalASTForErrorMessage() const |
| 360 | { |
| 361 | if (!original_ast) |
| 362 | throw Exception(ErrorCodes::UNSUPPORTED_METHOD, "Original AST was not set"); |
| 363 | |
| 364 | return original_ast->formatForErrorMessage(); |
| 365 | } |
| 366 | |
| 367 | String IQueryTreeNode::formatConvertedASTForErrorMessage() const |
| 368 | { |
nothing calls this directly
no test coverage detected