| 307 | } |
| 308 | |
| 309 | Result<std::shared_ptr<Schema>> DeserializeSchema( |
| 310 | const Buffer& buf, const ExtensionSet& ext_set, |
| 311 | const ConversionOptions& conversion_options) { |
| 312 | ARROW_ASSIGN_OR_RAISE(auto named_struct, ParseFromBuffer<substrait::NamedStruct>(buf)); |
| 313 | return FromProto(named_struct, ext_set, conversion_options); |
| 314 | } |
| 315 | |
| 316 | Result<std::shared_ptr<Buffer>> SerializeSchema( |
| 317 | const Schema& schema, ExtensionSet* ext_set, |