RussellSpitzer commented on code in PR #14040:
URL: https://github.com/apache/iceberg/pull/14040#discussion_r2334934635
##########
parquet/src/main/java/org/apache/iceberg/InternalParquet.java:
##########
@@ -37,6 +37,6 @@ private static Parquet.WriteBuilder writeInternal(OutputFile
outputFile) {
}
private static Parquet.ReadBuilder readInternal(InputFile inputFile) {
- return Parquet.read(inputFile).createReaderFunc(InternalReader::create);
+ return Parquet.read(inputFile).useInternalReader(new InternalReader<>());
Review Comment:
We cannot create a reader function at this point because we don't know
whether or not we will have custom classes to apply by future calls to returned
object from this class.
--
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]