\brief Append the key-value metadata to the file metadata
| 510 | |
| 511 | /// \brief Append the key-value metadata to the file metadata |
| 512 | ::arrow::Status AddKeyValueMetadata( |
| 513 | const std::shared_ptr<const ::arrow::KeyValueMetadata>& key_value_metadata) |
| 514 | override { |
| 515 | PARQUET_CATCH_NOT_OK(writer_->AddKeyValueMetadata(key_value_metadata)); |
| 516 | return Status::OK(); |
| 517 | } |
| 518 | |
| 519 | private: |
| 520 | friend class FileWriter; |