MCPcopy Create free account
hub / github.com/ByConity/ByConity / registerDataTypeFixedString

Function registerDataTypeFixedString

src/DataTypes/DataTypeFixedString.cpp:92–99  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90
91
92void registerDataTypeFixedString(DataTypeFactory & factory)
93{
94 factory.registerDataType("FixedString", create);
95
96 /// Compatibility alias.
97 factory.registerAlias("BINARY", "FixedString", DataTypeFactory::CaseInsensitive);
98 factory.registerAlias("BIT", "FixedString", DataTypeFactory::CaseInsensitive);
99}
100
101Field DataTypeFixedString::stringToVisitorField(const String & ins) const
102{

Callers 1

DataTypeFactoryMethod · 0.85

Calls 2

registerDataTypeMethod · 0.80
registerAliasMethod · 0.80

Tested by

no test coverage detected