pvary commented on code in PR #12298:
URL: https://github.com/apache/iceberg/pull/12298#discussion_r2382448622


##########
parquet/src/main/java/org/apache/iceberg/parquet/ReadConf.java:
##########
@@ -59,17 +59,16 @@ class ReadConf<T> {
   // List of column chunk metadata for each row group
   private final List<Map<ColumnPath, ColumnChunkMetaData>> 
columnChunkMetaDataForRowGroups;
 
-  @SuppressWarnings("unchecked")
   ReadConf(
       InputFile file,
       ParquetReadOptions options,
       Schema expectedSchema,
       Expression filter,
-      Function<MessageType, ParquetValueReader<?>> readerFunc,
-      Function<MessageType, VectorizedReader<?>> batchedReaderFunc,
+      Function<MessageType, ParquetValueReader<T>> readerFunc,
+      Function<MessageType, VectorizedReader<T>> batchedReaderFunc,

Review Comment:
   The new functions are converted to these. So we don't need them here



-- 
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]

Reply via email to