manuzhang commented on code in PR #8988: URL: https://github.com/apache/iceberg/pull/8988#discussion_r1384231086
########## parquet/src/main/java/org/apache/iceberg/parquet/ParquetDictionaryRowGroupFilter.java: ########## @@ -199,7 +201,7 @@ public <T> Boolean lt(BoundReference<T> ref, Literal<T> lit) { int id = ref.fieldId(); Boolean hasNonDictPage = isFallback.get(id); - if (hasNonDictPage == null || hasNonDictPage) { + if (hasNonDictPage == null || hasNonDictPage || isInt96Column(id)) { Review Comment: Indeed, I've updated the patch. Please review again. -- 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