MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / doGetSerialization

Method doGetSerialization

src/DataTypes/DataTypeNullable.cpp:98–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96}
97
98SerializationPtr DataTypeNullable::doGetSerialization(const SerializationInfoSettings & settings) const
99{
100 if (settings.propagate_types_serialization_versions_to_nested_types)
101 return SerializationNullable::create(nested_data_type->getSerialization(settings));
102 return SerializationNullable::create(nested_data_type->getDefaultSerialization());
103}
104
105void DataTypeNullable::forEachChild(const ChildCallback & callback) const
106{

Callers

nothing calls this directly

Calls 3

createFunction · 0.70
getSerializationMethod · 0.45

Tested by

no test coverage detected