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/05/26 18:54:58 UTC

[arrow] branch master updated (f16f76a -> 97d4678)

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 f16f76a  ARROW-8782: [Rust] Add benchmark crate
     add 97d4678  ARROW-8882: [C#] Add .editorconfig to C# code

No new revisions were added by this update.

Summary of changes:
 csharp/.editorconfig                               | 169 +++++++++++++++++++++
 csharp/README.md                                   |   4 +
 csharp/src/Apache.Arrow/Arrays/BinaryArray.cs      |  12 +-
 csharp/src/Apache.Arrow/Arrays/BooleanArray.cs     |  14 +-
 csharp/src/Apache.Arrow/Arrays/Date32Array.cs      |   2 +-
 csharp/src/Apache.Arrow/Arrays/Date64Array.cs      |   2 +-
 csharp/src/Apache.Arrow/Arrays/ListArray.cs        |   4 +-
 csharp/src/Apache.Arrow/Arrays/PrimitiveArray.cs   |   6 +-
 .../Apache.Arrow/Arrays/PrimitiveArrayBuilder.cs   |  10 +-
 csharp/src/Apache.Arrow/Arrays/StringArray.cs      |   6 +-
 csharp/src/Apache.Arrow/Arrays/TimestampArray.cs   |  10 +-
 csharp/src/Apache.Arrow/ArrowBuffer.Builder.cs     |  11 +-
 csharp/src/Apache.Arrow/BitUtility.cs              |  20 +--
 csharp/src/Apache.Arrow/Column.cs                  |  21 ++-
 .../Apache.Arrow/Extensions/ArrowTypeExtensions.cs |   8 +-
 .../Apache.Arrow/Extensions/TimeSpanExtensions.cs  |   7 +-
 .../Ipc/ArrowFileReaderImplementation.cs           |  14 +-
 csharp/src/Apache.Arrow/Ipc/ArrowFileWriter.cs     |  12 +-
 csharp/src/Apache.Arrow/Ipc/ArrowFooter.cs         |   8 +-
 .../Apache.Arrow/Ipc/ArrowReaderImplementation.cs  |  38 ++---
 .../Ipc/ArrowStreamReaderImplementation.cs         |   4 +-
 csharp/src/Apache.Arrow/Ipc/ArrowStreamWriter.cs   |  70 ++++-----
 .../Apache.Arrow/Ipc/ArrowTypeFlatbufferBuilder.cs |   2 +-
 csharp/src/Apache.Arrow/Ipc/IpcOptions.cs          |   2 +-
 csharp/src/Apache.Arrow/Ipc/MessageSerializer.cs   |  22 +--
 csharp/src/Apache.Arrow/Memory/MemoryAllocator.cs  |   4 +-
 .../Apache.Arrow/Memory/NativeMemoryAllocator.cs   |   6 +-
 .../src/Apache.Arrow/Memory/NativeMemoryManager.cs |   4 +-
 csharp/src/Apache.Arrow/RecordBatch.Builder.cs     |  13 +-
 csharp/src/Apache.Arrow/RecordBatch.cs             |   2 +-
 csharp/src/Apache.Arrow/Schema.Builder.cs          |   4 +-
 csharp/src/Apache.Arrow/Schema.cs                  |   2 +-
 32 files changed, 342 insertions(+), 171 deletions(-)
 create mode 100644 csharp/.editorconfig