tlm365 commented on issue #41686:
URL: https://github.com/apache/arrow/issues/41686#issuecomment-2124730470

   @vibhatha the Field he passed when create `vec` is **notNullable**:
   Field structField = new Field("struct", 
FieldType.**notNullable**(Struct.INSTANCE), List.of(intField));
   FieldVector vec = structField.createVector(allocator);
   
   but **nullable** when pass to `getTransferPair`:
   TransferPair tp = vec.getTransferPair(new Field("struct", 
FieldType.**nullable**(Struct.INSTANCE), List.of(intField)), allocator);
   
   
   


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