| 33 | } |
| 34 | |
| 35 | Result<std::shared_ptr<DataType>> JsonExtensionType::Deserialize( |
| 36 | std::shared_ptr<DataType> storage_type, const std::string& serialized) const { |
| 37 | return JsonExtensionType::Make(std::move(storage_type)); |
| 38 | } |
| 39 | |
| 40 | std::string JsonExtensionType::Serialize() const { return ""; } |
| 41 |