You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ji...@apache.org on 2022/11/19 05:45:31 UTC

[arrow-rs] branch add-bloom-filter-3 updated (8ed433799 -> 85014cea8)

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

jiayuliu pushed a change to branch add-bloom-filter-3
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


 discard 8ed433799 Apply suggestions from code review
 discard e102b87da fix clippy
 discard 8dcd75e80 add unit test
 discard b754a9ee1 fix doc
 discard 8ded33a6c incorporate ndv and fpp
 discard 414097535 remove default feature for twox
 discard a30bd097a fix clippy
 discard 93afb6c01 fix clippy
 discard 872473dc4 update row group vec
 discard 9b55ab6fb bloom filter part III
     add e55b95e8d Clippy parquet fixes (#3124)
     add 2a065bee3 Bump actions/labeler from 4.0.2 to 4.1.0 (#3129)
     add 5bce1044f Add COW conversion for Buffer and PrimitiveArray and unary_mut (#3115)
     add f4558aeb2 bloom filter part III
     add ea13d0aca update row group vec
     add 03edb7df7 fix clippy
     add 5fa74765f fix clippy
     add 3732e436c remove default feature for twox
     add 7f46a4b6e incorporate ndv and fpp
     add 27a404d3c fix doc
     add 35e56c135 add unit test
     add ec68e695e fix clippy
     add 85014cea8 Apply suggestions from code review

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (8ed433799)
            \
             N -- N -- N   refs/heads/add-bloom-filter-3 (85014cea8)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/dev_pr.yml                      |   2 +-
 arrow-array/src/array/mod.rs                      |  12 ++
 arrow-array/src/array/primitive_array.rs          | 161 +++++++++++++++++++++-
 arrow-array/src/builder/boolean_buffer_builder.rs |   5 +
 arrow-array/src/builder/buffer_builder.rs         |   9 ++
 arrow-array/src/builder/null_buffer_builder.rs    |  25 +++-
 arrow-array/src/builder/primitive_builder.rs      |  24 ++++
 arrow-buffer/src/buffer/immutable.rs              |  19 +++
 arrow-buffer/src/buffer/mutable.rs                |  19 +++
 arrow-buffer/src/bytes.rs                         |   5 +
 arrow-json/src/reader.rs                          |   2 -
 parquet/src/data_type.rs                          |  24 ----
 parquet/src/encodings/decoding.rs                 |  15 +-
 parquet/src/record/api.rs                         |  11 +-
 14 files changed, 292 insertions(+), 41 deletions(-)