| 228 | |
| 229 | |
| 230 | DataTypePtr removeLowCardinality(const DataTypePtr & type) |
| 231 | { |
| 232 | if (const auto * low_cardinality_type = typeid_cast<const DataTypeLowCardinality *>(type.get())) |
| 233 | return low_cardinality_type->getDictionaryType(); |
| 234 | return type; |
| 235 | } |
| 236 | |
| 237 | } |
no test coverage detected