clee704 commented on code in PR #41580:
URL: https://github.com/apache/arrow/pull/41580#discussion_r1677221725
##########
cpp/src/parquet/column_writer.cc:
##########
@@ -1405,6 +1408,25 @@ class TypedColumnWriterImpl : public ColumnWriterImpl,
public TypedColumnWriter<
return pages_change_on_record_boundaries_;
}
+ void AddKeyValueMetadata(
+ const std::shared_ptr<const KeyValueMetadata>& key_value_metadata)
override {
+ if (closed_) {
+ throw ParquetException("Cannot add key-value metadata to closed column");
+ }
Review Comment:
I think you're looking at the old code. The code below is the same as
file_writer.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]