CookiePieWw commented on code in PR #7574: URL: https://github.com/apache/arrow-rs/pull/7574#discussion_r2124130637
########## parquet/tests/arrow_reader/mod.rs: ########## @@ -987,6 +991,33 @@ fn create_data_batch(scenario: Scenario) -> Vec<RecordBatch> { make_utf8_batch(vec![Some("e"), Some("f"), Some("g"), Some("h"), Some("i")]), ] } + Scenario::TruncatedUTF8 => { + // Make utf8 batch with strings longer than 64 bytes + // to check truncation of row group statistics + vec![ + make_utf8_batch(vec![ + Some(&("a".repeat(64) + "1")), + Some(&("b".repeat(64) + "2")), + Some(&("c".repeat(64) + "3")), Review Comment: Ah thanks! So it's not a bug then. -- 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