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/14 12:31:36 UTC

[arrow-rs] branch add-bloom-filter-2 updated (74a191c9a -> c66d7a00a)

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

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


 discard 74a191c9a add bin
 discard e8273d0f4 add a binary to demo
 discard 2562f9770 refactor
 discard c685f0c2c fix reading with chunk reader
 discard d3d407b29 add api
 discard 5e200d981 add feature flag
     add 20d81f578 Add FixedSizeBinaryArray::try_from_sparse_iter_with_size (#3054)
     add 46da60642 Cleanup temporal _internal functions (#3099)
     add 430eb84d0 Improve schema mismatch error message (#3098)
     add 0900be278 Upgrade to thrift 0.17 and fix issues (#3104)
     add d5458bbdc add feature flag
     add 2557f2c4a add api
     add 88cea8052 fix reading with chunk reader
     add efd89916a refactor
     add 5f4deae63 add a binary to demo
     add c66d7a00a add bin

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   (74a191c9a)
            \
             N -- N -- N   refs/heads/add-bloom-filter-2 (c66d7a00a)

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:
 arrow-array/src/array/fixed_size_binary_array.rs | 121 +++++-
 arrow-schema/src/field.rs                        |  37 +-
 arrow-select/src/take.rs                         |   7 +-
 arrow/src/array/ffi.rs                           |   3 +-
 arrow/src/compute/kernels/comparison.rs          |  41 ++
 arrow/src/compute/kernels/sort.rs                |  15 +-
 arrow/src/compute/kernels/substring.rs           |   3 +-
 arrow/src/compute/kernels/temporal.rs            | 152 ++-----
 arrow/src/ffi.rs                                 |   8 +-
 arrow/src/row/dictionary.rs                      |   2 +-
 arrow/src/util/bench_util.rs                     |  25 +-
 arrow/tests/array_transform.rs                   |   9 +-
 parquet/Cargo.toml                               |   2 +-
 parquet/src/arrow/async_reader.rs                |   2 +-
 parquet/src/bloom_filter/mod.rs                  |   3 +-
 parquet/src/file/footer.rs                       |   2 +-
 parquet/src/file/page_index/index_reader.rs      |   2 +-
 parquet/src/file/serialized_reader.rs            |   4 +-
 parquet/src/file/writer.rs                       |   2 +-
 parquet/src/format.rs                            | 494 +++++++++++++++--------
 20 files changed, 579 insertions(+), 355 deletions(-)