| 915 | } |
| 916 | |
| 917 | bool ExpressionAnalyzer::isRemoteStorage() const |
| 918 | { |
| 919 | // Consider any storage used in parallel replicas as remote, so the query is executed in multiple servers |
| 920 | return syntax->is_remote_storage || getContext()->canUseTaskBasedParallelReplicas(); |
| 921 | } |
| 922 | |
| 923 | const ASTSelectQuery * SelectQueryExpressionAnalyzer::getAggregatingQuery() const |
| 924 | { |
nothing calls this directly
no test coverage detected