prashantwason commented on code in PR #18384:
URL: https://github.com/apache/hudi/pull/18384#discussion_r3011338685


##########
hudi-hadoop-common/src/main/java/org/apache/hudi/io/storage/hadoop/HoodieAvroOrcWriter.java:
##########
@@ -70,11 +70,17 @@ public class HoodieAvroOrcWriter implements 
HoodieAvroFileWriter, Closeable {
   private final TaskContextSupplier taskContextSupplier;
 
   private final HoodieOrcConfig orcConfig;
+  private final boolean[] populateField;
   private String minRecordKey;
   private String maxRecordKey;
 
   public HoodieAvroOrcWriter(String instantTime, StoragePath file, 
HoodieOrcConfig config, HoodieSchema schema,
                              TaskContextSupplier taskContextSupplier) throws 
IOException {
+    this(instantTime, file, config, schema, taskContextSupplier, null);
+  }
+
+  public HoodieAvroOrcWriter(String instantTime, StoragePath file, 
HoodieOrcConfig config, HoodieSchema schema,
+                             TaskContextSupplier taskContextSupplier, 
boolean[] populateField) throws IOException {

Review Comment:
   Done.



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

Reply via email to