nastra commented on code in PR #14800:
URL: https://github.com/apache/iceberg/pull/14800#discussion_r2793673423
##########
arrow/src/main/java/org/apache/iceberg/arrow/vectorized/parquet/VectorizedPageIterator.java:
##########
@@ -100,6 +101,23 @@ protected void initDataReader(Encoding dataEncoding,
ByteBufferInputStream in, i
case DELTA_BINARY_PACKED:
valuesReader = new VectorizedDeltaEncodedValuesReader();
break;
+ case DELTA_LENGTH_BYTE_ARRAY:
+ valuesReader = new VectorizedDeltaLengthByteArrayValuesReader();
+ break;
+ case DELTA_BYTE_ARRAY:
+ valuesReader = new VectorizedDeltaByteArrayValuesReader();
+ break;
+ case BYTE_STREAM_SPLIT:
+ valuesReader = new VectorizedByteStreamSplitValuesReader();
+ break;
+ case RLE:
+ if (desc.getPrimitiveType().getPrimitiveTypeName()
+ == PrimitiveType.PrimitiveTypeName.BOOLEAN) {
+ valuesReader =
+ new
VectorizedRunLengthEncodedParquetValuesReader(setArrowValidityVector);
+ break;
+ }
+ // fall through
Review Comment:
```suggestion
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]