tsianglei opened a new pull request #2970:
URL: https://github.com/apache/iceberg/pull/2970
Parquet.ReadBuilder set reuseContainers twice. Remove repeat set
reuseContainers.
The origin code as follows:
```
Parquet.ReadBuilder builder = Parquet.read(getInputFile(task))
.reuseContainers()
.split(task.start(), task.length())
.project(schema)
.createReaderFunc(fileSchema ->
FlinkParquetReaders.buildReader(schema, fileSchema, idToConstant))
.filter(task.residual())
.caseSensitive(caseSensitive)
.reuseContainers();
```
--
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]