\brief Append the key-value metadata to the file metadata
| 522 | |
| 523 | /// \brief Append the key-value metadata to the file metadata |
| 524 | ::arrow::Status AddKeyValueMetadata( |
| 525 | const std::shared_ptr<const ::arrow::KeyValueMetadata>& key_value_metadata) |
| 526 | override { |
| 527 | PARQUET_CATCH_NOT_OK(writer_->AddKeyValueMetadata(key_value_metadata)); |
| 528 | return Status::OK(); |
| 529 | } |
| 530 | |
| 531 | private: |
| 532 | friend class FileWriter; |