aokolnychyi commented on PR #6550:
URL: https://github.com/apache/iceberg/pull/6550#issuecomment-1377828306

   I took a look at `ArrowColumnVector` in Spark and it seems to be using its 
own nullability mechanism.
   
   ```
   @Override
   public UTF8String getUTF8String(int rowId) {
     if (isNullAt(rowId)) return null;
     return accessor.getUTF8String(rowId);
   }
   ```
   
   Given the performance impact, I am inclined to go ahead with this change.


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