tustvold commented on code in PR #1937:
URL: https://github.com/apache/arrow-rs/pull/1937#discussion_r905931358


##########
parquet/src/arrow/schema.rs:
##########
@@ -300,10 +300,15 @@ fn arrow_to_parquet_type(field: &Field) -> Result<Type> {
                 .with_repetition(repetition)
                 .build()
         }
-        DataType::Timestamp(time_unit, _) => {
+        DataType::Timestamp(time_unit, tz) => {
+            let is_utc = tz

Review Comment:
   I initially played around with using chrono-tz, but this is a non-trivial 
additional dependency, and does not appear to be being actively maintained. I 
think this should be good enough, until such a time as we potentially add 
coerce types functionality as part of #1666 



-- 
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]

Reply via email to