| 96 | } |
| 97 | |
| 98 | SerializationPtr 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 | |
| 105 | void DataTypeNullable::forEachChild(const ChildCallback & callback) const |
| 106 | { |
nothing calls this directly
no test coverage detected