openinx commented on a change in pull request #3250:
URL: https://github.com/apache/iceberg/pull/3250#discussion_r730536626



##########
File path: orc/src/main/java/org/apache/iceberg/data/orc/GenericOrcWriters.java
##########
@@ -138,6 +146,15 @@ private GenericOrcWriters() {
     return new MapWriter<>(key, value);
   }
 
+  public static <T> OrcRowWriter<PositionDelete<T>> 
positionDelete(OrcRowWriter<T> writer,
+      Function<CharSequence, ?> pathTransformFunc) {
+    return new PositionDeleteStructWriter(writer, pathTransformFunc);

Review comment:
       Nit:  Pls use the `new PositionDeleteStructWriter<>(writer, 
pathTransformFunc)` to address the IDEA warning: `Raw use of parameterized 
class PositionDeleteStructWriter`




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