vibhatha commented on code in PR #43516:
URL: https://github.com/apache/arrow/pull/43516#discussion_r1710394295
##########
java/vector/src/main/codegen/templates/PromotableWriter.java:
##########
@@ -194,6 +219,28 @@ public PromotableWriter(
this.parentContainer = null;
this.listVector = null;
this.listViewVector = null;
+ this.largeListViewVector = null;
+ this.nullableStructWriterFactory = nullableStructWriterFactory;
+ init(v);
+ }
+
+ /**
+ * Constructs a new instance.
+ *
+ * @param v The vector to initialize the writer with.
+ * @param largeListViewVector The vector that serves as a parent of v.
+ * @param nullableStructWriterFactory The factory to create the delegate
writer.
+ */
+ public PromotableWriter(
+ ValueVector v,
+ LargeListViewVector largeListViewVector,
+ NullableStructWriterFactory nullableStructWriterFactory) {
+ this.largeListViewVector = largeListViewVector;
+ this.fixedListVector = null;
+ this.parentContainer = null;
+ this.listVector = null;
+ this.listViewVector = null;
+ this.largeListVector = null;
Review Comment:
Same as the above point.
--
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]