| 1497 | } |
| 1498 | |
| 1499 | void SelectQueryExpressionAnalyzer::validateGroupByKeyType(const DB::DataTypePtr & key_type) const |
| 1500 | { |
| 1501 | DB::validateGroupByKeyType(key_type, getContext()->getSettingsRef()[Setting::allow_suspicious_types_in_group_by]); |
| 1502 | } |
| 1503 | |
| 1504 | void SelectQueryExpressionAnalyzer::appendAggregateFunctionsArguments(ExpressionActionsChain & chain, bool only_types) |
| 1505 | { |
nothing calls this directly
no test coverage detected