aokolnychyi commented on a change in pull request #3287:
URL: https://github.com/apache/iceberg/pull/3287#discussion_r743032246
##########
File path:
arrow/src/main/java/org/apache/iceberg/arrow/vectorized/VectorizedReaderBuilder.java
##########
@@ -61,6 +61,10 @@ public VectorizedReaderBuilder(
this.readerFactory = readerFactory;
}
+ public Function<List<VectorizedReader<?>>, VectorizedReader<?>>
readerFactory() {
Review comment:
I think we may not this method. The second method should be enough if
`ReadBuilder` is changed.
```
@Override
protected VectorizedReader<?> vectorizedReader(List<VectorizedReader<?>>
reorderedFields) {
VectorizedReader<?> reader = super.vectorizedReader(reorderedFields);
if (deleteFilter != null) {
((ColumnarBatchReader) reader).setDeleteFilter(deleteFilter);
}
return reader;
}
```
--
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]