RussellSpitzer commented on code in PR #13290: URL: https://github.com/apache/iceberg/pull/13290#discussion_r2153223730
########## arrow/src/main/java/org/apache/iceberg/arrow/vectorized/parquet/VectorizedPageIterator.java: ########## @@ -65,13 +64,13 @@ public void setAllPagesDictEncoded(boolean allDictEncoded) { @Override protected void reset() { super.reset(); - this.plainValuesReader = null; + this.valuesReader = null; this.vectorizedDefinitionLevelReader = null; } @Override protected void initDataReader(Encoding dataEncoding, ByteBufferInputStream in, int valueCount) { - ValuesReader previousReader = plainValuesReader; + ValuesReader previousReader = (ValuesReader) valuesReader; Review Comment: Explicit cast? -- 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