a10y commented on code in PR #7285:
URL: https://github.com/apache/arrow-rs/pull/7285#discussion_r1996031541
##########
parquet/src/data_type.rs:
##########
@@ -38,6 +38,24 @@ pub struct Int96 {
value: [u32; 3],
}
+const JULIAN_DAY_OF_EPOCH: i64 = 2_440_588;
+
+/// Number of seconds in a day
Review Comment:
I think the issue is that arrow-array is an optional dependency of the
`parquet` crate, which means depending on which features you compile with, it's
either available at compile time or it isn't.
If you define these somewhere inside of the `parquet::arrow` module (which
is compiled with the `"arrow"` feature) then you should be able to access it
--
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]