You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by em...@apache.org on 2021/04/07 15:24:08 UTC

[arrow] branch master updated (4db1b05 -> 53696db)

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

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


    from 4db1b05  ARROW-12154: [C++][Gandiva] Fix gandiva crash in certain OS/CPU combinations
     add 53696db  ARROW-12168: [Go][IPC] Implement Compression handling for Arrow IPC

No new revisions were added by this update.

Summary of changes:
 dev/archery/archery/integration/runner.py |   1 -
 docs/source/status.rst                    |  10 +--
 go/arrow/go.mod                           |   5 +-
 go/arrow/go.sum                           |  24 +++---
 go/arrow/internal/arrdata/ioutil.go       |  83 ++++++++++++++++++-
 go/arrow/ipc/cmd/arrow-cat/main_test.go   |  14 ++--
 go/arrow/ipc/cmd/arrow-ls/main_test.go    |   8 +-
 go/arrow/ipc/compression.go               | 109 +++++++++++++++++++++++++
 go/arrow/ipc/file_reader.go               |  53 ++++++++++---
 go/arrow/ipc/file_test.go                 |  32 ++++++++
 go/arrow/ipc/file_writer.go               |  16 ++--
 go/arrow/ipc/ipc.go                       |  30 +++++++
 go/arrow/ipc/message.go                   |   1 +
 go/arrow/ipc/metadata.go                  |  23 +++++-
 go/arrow/ipc/stream_test.go               |  49 ++++++++++++
 go/arrow/ipc/writer.go                    | 127 ++++++++++++++++++++++++++----
 16 files changed, 521 insertions(+), 64 deletions(-)
 create mode 100644 go/arrow/ipc/compression.go