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/08/19 16:07:07 UTC

[arrow] branch master updated (895f85f -> f406b53)

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 895f85f  ARROW-13602: [C++] Fix strict aliasing warning in bit util test
     add f406b53  PARQUET-490: [C++][Parquet] Basic support for reading DELTA_BINARY_PACKED data

No new revisions were added by this update.

Summary of changes:
 LICENSE.txt                                       |    2 +
 cpp/src/arrow/util/bit_stream_utils.h             |   94 +-
 cpp/src/arrow/util/bit_util_test.cc               |   44 +-
 cpp/src/arrow/util/bpacking.cc                    |  218 +
 cpp/src/arrow/util/bpacking.h                     |    2 +
 cpp/src/arrow/util/bpacking64_codegen.py          |  131 +
 cpp/src/arrow/util/bpacking64_default.h           | 5642 +++++++++++++++++++++
 cpp/src/arrow/util/rle_encoding.h                 |    2 +-
 cpp/src/parquet/CMakeLists.txt                    |    4 +
 cpp/src/parquet/arrow/arrow_reader_writer_test.cc |   38 +
 cpp/src/parquet/column_reader.cc                  |    7 +-
 cpp/src/parquet/encoding.cc                       |  112 +-
 cpp/src/parquet/types.h                           |    3 +-
 cpp/submodules/parquet-testing                    |    2 +-
 14 files changed, 6244 insertions(+), 57 deletions(-)
 create mode 100644 cpp/src/arrow/util/bpacking64_codegen.py
 create mode 100644 cpp/src/arrow/util/bpacking64_default.h