| 872 | } |
| 873 | |
| 874 | bool hasFunctionNode(const QueryTreeNodePtr & node, std::string_view function_name) |
| 875 | { |
| 876 | CheckFunctionExistsVisitor visitor(function_name); |
| 877 | visitor.visit(node); |
| 878 | |
| 879 | return visitor.hasFunction(); |
| 880 | } |
| 881 | |
| 882 | namespace |
| 883 | { |
no test coverage detected