| 212 | } |
| 213 | |
| 214 | void IDataType::setCustomization(DataTypeCustomDescPtr custom_desc_) const |
| 215 | { |
| 216 | /// replace only if not null |
| 217 | if (custom_desc_->name) |
| 218 | custom_name = std::move(custom_desc_->name); |
| 219 | |
| 220 | if (custom_desc_->serialization) |
| 221 | custom_serialization = std::move(custom_desc_->serialization); |
| 222 | } |
| 223 | |
| 224 | SerializationInfoPtr IDataType::getSerializationInfo(const IColumn & column) const |
| 225 | { |
no outgoing calls
no test coverage detected