| 223 | } |
| 224 | |
| 225 | void DataTypeFactory::registerSimpleDataTypeCustom(const String &name, SimpleCreatorWithCustom creator, CaseSensitiveness case_sensitiveness) |
| 226 | { |
| 227 | registerDataTypeCustom(name, [creator](const ASTPtr & /*ast*/) |
| 228 | { |
| 229 | return creator(); |
| 230 | }, case_sensitiveness); |
| 231 | } |
| 232 | |
| 233 | const DataTypeFactory::Value & DataTypeFactory::findCreatorByName(const String & family_name) const |
| 234 | { |
no outgoing calls
no test coverage detected