Validate data types of GROUP BY key. */
| 3938 | /** Validate data types of GROUP BY key. |
| 3939 | */ |
| 3940 | void QueryAnalyzer::validateGroupByKeyType(const DataTypePtr & group_by_key_type, const IdentifierResolveScope & scope) const |
| 3941 | { |
| 3942 | DB::validateGroupByKeyType(group_by_key_type, scope.context->getSettingsRef()[Setting::allow_suspicious_types_in_group_by]); |
| 3943 | } |
| 3944 | |
| 3945 | /** Resolve interpolate columns nodes list. |
| 3946 | */ |
nothing calls this directly
no test coverage detected