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/13 12:56:55 UTC

[arrow-rs] branch add-bloom-filter updated (2f0e8bbaf -> c9208e79f)

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

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


    from 2f0e8bbaf Update parquet/src/bloom_filter/mod.rs
     add f9e34f6f9 fix clippy
     add 522625814 Make RowSelection::intersection a member function (#3084)
     add 01396822e Remove unused range module (#3085)
     add 02a3f5cd2 Move CSV test data (#3044) (#3051)
     add 561f63a23 Improved UX of  creating `TimestampNanosecondArray` with timezones (#3088)
     add 94565bca9 Update version to 27.0.0 and add changelog (#3089)
     add ccc44170a Fix clippy by avoiding deprecated functions in chrono (#3096)
     add aaf030f79 Fix prettyprint for Interval second fractions (#3093)
     add c7210ce2b Minor: Add diagrams and documentation to row format (#3094)
     add 3084ee258 Use ArrowNativeTypeOp instead of total_cmp directly (#3087)
     add c9208e79f Merge branch 'master' into add-bloom-filter

No new revisions were added by this update.

Summary of changes:
 CHANGELOG-old.md                                   |  95 +++++
 CHANGELOG.md                                       | 179 ++++----
 arrow-array/Cargo.toml                             |   8 +-
 arrow-array/src/array/primitive_array.rs           |  24 +-
 arrow-array/src/delta.rs                           | 207 ++++++---
 arrow-array/src/temporal_conversions.rs            |   2 +-
 arrow-array/src/timezone.rs                        |  34 +-
 arrow-array/src/types.rs                           |   8 +-
 arrow-buffer/Cargo.toml                            |   2 +-
 arrow-cast/Cargo.toml                              |  12 +-
 arrow-cast/src/cast.rs                             |  16 +-
 arrow-cast/src/display.rs                          |   4 +-
 arrow-cast/src/parse.rs                            |  16 +-
 arrow-csv/Cargo.toml                               |  12 +-
 arrow-csv/src/reader.rs                            | 449 ++++++++++++++++++-
 {arrow => arrow-csv}/test/data/decimal_test.csv    |   0
 {arrow => arrow-csv}/test/data/null_test.csv       |   0
 {arrow => arrow-csv}/test/data/uk_cities.csv       |   0
 .../test/data/uk_cities_with_headers.csv           |   0
 {arrow => arrow-csv}/test/data/various_types.csv   |   0
 .../test/data/various_types_invalid.csv            |   0
 arrow-data/Cargo.toml                              |   6 +-
 arrow-flight/Cargo.toml                            |  10 +-
 arrow-flight/README.md                             |   2 +-
 arrow-integration-test/Cargo.toml                  |   6 +-
 arrow-integration-testing/Cargo.toml               |   2 +-
 arrow-ipc/Cargo.toml                               |  12 +-
 arrow-json/Cargo.toml                              |  12 +-
 arrow-pyarrow-integration-testing/Cargo.toml       |   4 +-
 arrow-schema/Cargo.toml                            |   2 +-
 arrow-select/Cargo.toml                            |  10 +-
 arrow/Cargo.toml                                   |  22 +-
 arrow/README.md                                    |   2 +-
 arrow/benches/cast_kernels.rs                      |   6 +-
 arrow/examples/read_csv.rs                         |   5 +-
 arrow/examples/read_csv_infer_schema.rs            |   2 +-
 arrow/src/compute/kernels/arithmetic.rs            |  24 +-
 arrow/src/compute/kernels/comparison.rs            | 112 ++---
 arrow/src/row/mod.rs                               | 191 +++++++--
 arrow/src/util/pretty.rs                           |  84 ++++
 arrow/tests/csv.rs                                 | 422 ------------------
 dev/release/README.md                              |   2 +-
 dev/release/rat_exclude_files.txt                  |   1 +
 dev/release/update_change_log.sh                   |   4 +-
 parquet/Cargo.toml                                 |  20 +-
 parquet/src/arrow/arrow_reader/mod.rs              |   2 +-
 parquet/src/arrow/arrow_reader/selection.rs        |  42 +-
 parquet/src/bloom_filter/mod.rs                    |   2 +-
 parquet/src/file/page_index/mod.rs                 |   3 -
 parquet/src/file/page_index/range.rs               | 475 ---------------------
 parquet/src/record/api.rs                          |  21 +-
 parquet_derive/Cargo.toml                          |   4 +-
 parquet_derive/README.md                           |   4 +-
 parquet_derive_test/Cargo.toml                     |   6 +-
 54 files changed, 1285 insertions(+), 1305 deletions(-)
 rename {arrow => arrow-csv}/test/data/decimal_test.csv (100%)
 rename {arrow => arrow-csv}/test/data/null_test.csv (100%)
 rename {arrow => arrow-csv}/test/data/uk_cities.csv (100%)
 rename {arrow => arrow-csv}/test/data/uk_cities_with_headers.csv (100%)
 rename {arrow => arrow-csv}/test/data/various_types.csv (100%)
 rename {arrow => arrow-csv}/test/data/various_types_invalid.csv (100%)
 delete mode 100644 parquet/src/file/page_index/range.rs