| 57 | } |
| 58 | |
| 59 | SerializationPtr DataTypeArray::doGetSerialization(const SerializationInfoSettings & settings) const |
| 60 | { |
| 61 | if (settings.propagate_types_serialization_versions_to_nested_types) |
| 62 | return SerializationArray::create(nested->getSerialization(settings)); |
| 63 | return SerializationArray::create(nested->getDefaultSerialization()); |
| 64 | } |
| 65 | |
| 66 | size_t DataTypeArray::getNumberOfDimensions() const |
| 67 | { |
nothing calls this directly
no test coverage detected