paddyhoran commented on a change in pull request #7500: URL: https://github.com/apache/arrow/pull/7500#discussion_r446258243
########## File path: rust/parquet/src/record/api.rs ########## @@ -893,16 +893,6 @@ mod tests { assert_eq!(row, Field::TimestampMillis(1238544060000)); } - #[test] - #[should_panic(expected = "Expected non-negative milliseconds when converting Int96")] - fn test_row_convert_int96_invalid() { - // INT96 value does not depend on logical type - let descr = make_column_descr![PhysicalType::INT96, LogicalType::NONE]; - - let value = Int96::from(vec![0, 0, 0]); - Field::convert_int96(&descr, value); - } - Review comment: Yea, I agree with the direction. I was just wondering if we were relying on this assumption (non-negative milliseconds) elsewhere in the codebase. I'll merge this soon if there are no other comments. ---------------------------------------------------------------- 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