mapleFU commented on code in PR #39491:
URL: https://github.com/apache/arrow/pull/39491#discussion_r1445595410


##########
cpp/src/parquet/arrow/schema_internal.cc:
##########
@@ -90,7 +90,7 @@ Result<std::shared_ptr<ArrowType>> MakeArrowTime64(const 
LogicalType& logical_ty
 Result<std::shared_ptr<ArrowType>> MakeArrowTimestamp(const LogicalType& 
logical_type) {
   const auto& timestamp = checked_cast<const 
TimestampLogicalType&>(logical_type);
   const bool utc_normalized =
-      timestamp.is_from_converted_type() ? false : 
timestamp.is_adjusted_to_utc();
+      timestamp.is_from_converted_type() ? true : 
timestamp.is_adjusted_to_utc();

Review Comment:
   > INT96 is a physical type and orthogonal to logical/converted type.
   
   Yeah, currently when we meet int96, we will bindly casting it to 
time-related, `!adjustedToUtc` value



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

Reply via email to