eerhardt commented on a change in pull request #7032:
URL: https://github.com/apache/arrow/pull/7032#discussion_r418393025
##########
File path: csharp/src/Apache.Arrow/Arrays/ListArray.cs
##########
@@ -69,25 +83,28 @@ public ListArray Build(MemoryAllocator allocator = default)
return new ListArray(DataType, Length - 1,
ValueOffsetsBufferBuilder.Build(allocator),
ValueBuilder.Build(allocator),
- new ArrowBuffer(), 0, 0);
+ ValidityBufferBuilder.Build(allocator).ValueBuffer,
NullCount, 0);
Review comment:
Similar comment on the Validity buffer being `Empty` when `NullCount ==
0`.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]