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

[arrow] branch master updated (ce9d425 -> 858f45e)

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

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


    from ce9d425  ARROW-11663: [Rust] [DataFusion] Fixed error.
     add 858f45e  ARROW-8797: [C++] Read RecordBatch in a different endian

No new revisions were added by this update.

Summary of changes:
 ci/scripts/integration_arrow.sh                    |   2 +
 cpp/src/arrow/array/array_test.cc                  | 347 +++++++++++++++++++++
 cpp/src/arrow/array/array_view_test.cc             |   2 +-
 cpp/src/arrow/array/util.cc                        | 203 +++++++++++-
 cpp/src/arrow/array/util.h                         |  11 +
 cpp/src/arrow/c/bridge_test.cc                     |   1 +
 cpp/src/arrow/chunked_array_test.cc                |   2 +-
 cpp/src/arrow/ipc/message.cc                       |   1 +
 cpp/src/arrow/ipc/metadata_internal.cc             |   6 +-
 cpp/src/arrow/ipc/options.h                        |  12 +
 cpp/src/arrow/ipc/reader.cc                        | 169 ++++++----
 cpp/src/arrow/ipc/writer.cc                        |   1 +
 cpp/src/arrow/type.cc                              |  47 ++-
 cpp/src/arrow/type.h                               |  28 ++
 cpp/src/arrow/type_fwd.h                           |  12 +
 cpp/src/arrow/type_test.cc                         |  51 ++-
 cpp/src/arrow/util/basic_decimal.cc                |   1 +
 cpp/src/arrow/util/bit_block_counter.h             |   1 +
 cpp/src/arrow/util/bit_run_reader.h                |   1 +
 cpp/src/arrow/util/bit_util.h                      | 139 ---------
 cpp/src/arrow/util/bit_util_test.cc                |  16 +-
 cpp/src/arrow/util/bitmap.h                        |   1 +
 cpp/src/arrow/util/bitmap_ops.cc                   |   1 +
 cpp/src/arrow/util/bitmap_reader.h                 |   1 +
 cpp/src/arrow/util/bitmap_writer.h                 |   1 +
 cpp/src/arrow/util/bpacking.h                      |   1 +
 cpp/src/arrow/util/compression_lz4.cc              |   1 +
 cpp/src/arrow/util/decimal.cc                      |   2 +-
 cpp/src/arrow/util/decimal_test.cc                 |   1 +
 cpp/src/arrow/util/endian.h                        | 179 +++++++++++
 cpp/src/arrow/util/hashing.h                       |   1 +
 cpp/src/gandiva/selection_vector.cc                |   1 +
 cpp/src/parquet/arrow/reader_internal.cc           |   1 +
 cpp/src/parquet/column_writer.cc                   |   1 +
 cpp/src/parquet/encoding_test.cc                   |   1 +
 cpp/src/parquet/level_comparison_inc.h             |   1 +
 cpp/src/parquet/level_conversion.h                 |   1 +
 cpp/src/parquet/types_test.cc                      |   2 +-
 cpp/src/plasma/io.cc                               |   2 +-
 dev/archery/archery/integration/runner.py          |   5 +
 .../generate_files_for_endian_test.sh}             |  50 ++-
 docs/source/cpp/compute.rst                        |  10 +-
 docs/source/status.rst                             |   4 +
 43 files changed, 1076 insertions(+), 245 deletions(-)
 create mode 100644 cpp/src/arrow/util/endian.h
 copy dev/{release/post-04-ruby.sh => archery/generate_files_for_endian_test.sh} (50%)