You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ee...@apache.org on 2020/06/10 13:59:59 UTC

[arrow] branch master updated (53db29f -> 75546d1)

This is an automated email from the ASF dual-hosted git repository.

eerhardt pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git.


    from 53db29f  ARROW-8726: [C++] Filename should not be part of DirectoryPartitioning
     add 75546d1  ARROW-8788: [C#] Introduce bit-packed builder for null support in builders

No new revisions were added by this update.

Summary of changes:
 csharp/src/Apache.Arrow/Arrays/BinaryArray.cs      |   9 +-
 csharp/src/Apache.Arrow/Arrays/BooleanArray.cs     |  68 ++-
 csharp/src/Apache.Arrow/Arrays/ListArray.cs        |   8 +-
 .../Apache.Arrow/Arrays/PrimitiveArrayBuilder.cs   |   9 +-
 .../src/Apache.Arrow/ArrowBuffer.BitmapBuilder.cs  | 279 ++++++++++++
 csharp/src/Apache.Arrow/ArrowBuffer.Builder.cs     | 131 +++++-
 csharp/src/Apache.Arrow/BitUtility.cs              |  67 ++-
 .../ArrowBufferBitmapBuilderTests.cs               | 496 +++++++++++++++++++++
 csharp/test/Apache.Arrow.Tests/BitUtilityTests.cs  |  18 +
 .../test/Apache.Arrow.Tests/BooleanArrayTests.cs   |   8 +-
 10 files changed, 1004 insertions(+), 89 deletions(-)
 create mode 100644 csharp/src/Apache.Arrow/ArrowBuffer.BitmapBuilder.cs
 create mode 100644 csharp/test/Apache.Arrow.Tests/ArrowBufferBitmapBuilderTests.cs