You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by bk...@apache.org on 2021/02/09 17:51:51 UTC

[arrow] branch master updated (d25660e -> 319b46c)

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

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


    from d25660e  ARROW-7808: [Java][Dataset] Implement Dataset Java API by JNI to C++
     add 319b46c  ARROW-10406: [C++] Unify dictionaries when writing IPC file in a single shot

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/array/array_dict.cc      | 276 +++++++++++++++++++------------
 cpp/src/arrow/array/array_dict.h       |  57 +++++++
 cpp/src/arrow/array/array_dict_test.cc | 287 +++++++++++++++++++++++++++++++-
 cpp/src/arrow/array/concatenate.cc     |  94 +++++------
 cpp/src/arrow/ipc/feather.cc           |  28 ++--
 cpp/src/arrow/ipc/feather_test.cc      |   6 +
 cpp/src/arrow/ipc/options.h            |  18 ++
 cpp/src/arrow/ipc/read_write_test.cc   | 290 +++++++++++++++++++++++++--------
 cpp/src/arrow/ipc/writer.cc            |  10 ++
 cpp/src/arrow/ipc/writer.h             |   5 +-
 cpp/src/arrow/testing/gtest_util.h     |   4 +
 cpp/src/arrow/type.h                   |  36 ----
 cpp/src/arrow/type_test.cc             | 154 -----------------
 cpp/src/arrow/util/int_util.cc         |  60 +++++++
 cpp/src/arrow/util/int_util.h          |   5 +
 python/pyarrow/includes/libarrow.pxd   |  10 ++
 python/pyarrow/table.pxi               |  59 +++++++
 python/pyarrow/tests/test_table.py     |  51 ++++++
 18 files changed, 1020 insertions(+), 430 deletions(-)