ajantha-bhat commented on code in PR #11904: URL: https://github.com/apache/iceberg/pull/11904#discussion_r1919615649
########## parquet/src/main/java/org/apache/iceberg/data/parquet/BaseParquetReaders.java: ########## @@ -397,7 +404,7 @@ public ParquetValueReader<?> primitive( case INT96: // Impala & Spark used to write timestamps as INT96 without a logical type. For backwards // compatibility we try to read INT96 as timestamps. - return new TimestampInt96Reader(desc); + return int96Reader(desc); Review Comment: I should assume `isAdjustedToUTC` to be true? because primitive don't have `TimestampType` and the reader was using `OffsetDateTime`, my understanding is if `OffsetDateTime` is used it is with timezone and `LocalDateTime` is without timezone. -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org