zeroshade commented on code in PR #39467: URL: https://github.com/apache/arrow/pull/39467#discussion_r1446644784
########## 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: shouldn't we also be checking if the timezone is already explicitly "UTC" / "utc" ? -- 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