nevi-me commented on a change in pull request #7917: URL: https://github.com/apache/arrow/pull/7917#discussion_r470102183
########## File path: rust/parquet/src/arrow/arrow_writer.rs ########## @@ -674,8 +712,16 @@ mod tests { ) .unwrap(); + let props = WriterProperties::builder() + .set_key_value_metadata(Some(vec![KeyValue { + key: "test_key".to_string(), + value: Some("test_value".to_string()), + }])) + .build(); + let file = get_temp_file("test_arrow_writer_complex.parquet", &[]); Review comment: TODO: this is stateful, and might fail as this file night not exist. Create a small file for the test ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org