joellubi commented on code in PR #39467: URL: https://github.com/apache/arrow/pull/39467#discussion_r1446773124
########## go/parquet/pqarrow/schema.go: ########## @@ -125,7 +125,7 @@ func isDictionaryReadSupported(dt arrow.DataType) bool { } func arrowTimestampToLogical(typ *arrow.TimestampType, unit arrow.TimeUnit) schema.LogicalType { - utc := typ.TimeZone == "" || typ.TimeZone == "UTC" + isAdjustedToUTC := typ.TimeZone != "" Review Comment: That scenario should have the same logic (`isAdjustedToUTC=true`) as any non-empty timezone, so it should already be covered by this, -- 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