| 275 | } |
| 276 | |
| 277 | DataTypePtr IDataType::getTypeForSubstream(const ISerialization::SubstreamPath & substream_path) const |
| 278 | { |
| 279 | auto type = tryGetSubcolumnType(ISerialization::getSubcolumnNameForStream(substream_path)); |
| 280 | if (type) |
| 281 | return type->getSubcolumnType(MAIN_SUBCOLUMN_NAME); |
| 282 | |
| 283 | return getSubcolumnType(MAIN_SUBCOLUMN_NAME); |
| 284 | } |
| 285 | |
| 286 | void IDataType::enumerateStreams(const SerializationPtr & serialization, const StreamCallbackWithType & callback, ISerialization::SubstreamPath & path) const |
| 287 | { |
nothing calls this directly
no test coverage detected