| 593 | } |
| 594 | |
| 595 | bool ASTSelectQuery::hasQueryParameters() const |
| 596 | { |
| 597 | if (!has_query_parameters.has_value()) |
| 598 | { |
| 599 | has_query_parameters = !analyzeReceiveQueryParams(make_intrusive<ASTSelectQuery>(*this)).empty(); |
| 600 | } |
| 601 | |
| 602 | return has_query_parameters.value(); |
| 603 | } |
| 604 | |
| 605 | NameToNameMap ASTSelectQuery::getQueryParameters() const |
| 606 | { |
no test coverage detected