| 907 | |
| 908 | |
| 909 | const ASTSelectQuery * ExpressionAnalyzer::getSelectQuery() const |
| 910 | { |
| 911 | const auto * select_query = query->as<ASTSelectQuery>(); |
| 912 | if (!select_query) |
| 913 | throw Exception(ErrorCodes::LOGICAL_ERROR, "Not a select query"); |
| 914 | return select_query; |
| 915 | } |
| 916 | |
| 917 | bool ExpressionAnalyzer::isRemoteStorage() const |
| 918 | { |
no test coverage detected