adamreeve commented on code in PR #7111: URL: https://github.com/apache/arrow-rs/pull/7111#discussion_r2020280234
########## parquet/src/encryption/decrypt.rs: ########## @@ -324,6 +346,14 @@ impl DecryptionPropertiesBuilder { .insert(column_name.to_string(), decryption_key); self } + + /// Specify multiple column decryption keys + pub fn with_column_keys(mut self, column_names: Vec<&str>, keys: Vec<Vec<u8>>) -> Self { + for (column_name, key) in column_names.into_iter().zip(keys.into_iter()) { Review Comment: :+1: Good point, done thanks -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org