You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ne...@apache.org on 2020/11/30 07:40:47 UTC

[arrow] branch master updated (322cd01 -> 07290fb)

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

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


    from 322cd01  ARROW-10760: [Rust] [DataFusion] Fixed error in filter push down over joins
     add 07290fb  ARROW-10769: [Rust] Revert "ARROW-10656: [Rust] Use DataType comparison without values"

No new revisions were added by this update.

Summary of changes:
 rust/arrow/examples/builders.rs                    |   6 +-
 rust/arrow/src/array/array_binary.rs               |   4 +-
 rust/arrow/src/array/array_list.rs                 |  31 ++--
 rust/arrow/src/array/builder.rs                    |  49 +++---
 rust/arrow/src/compute/kernels/cast.rs             |  33 ++--
 rust/arrow/src/compute/kernels/comparison.rs       |   6 +-
 rust/arrow/src/compute/kernels/filter.rs           |   2 +-
 rust/arrow/src/compute/kernels/limit.rs            |   4 +-
 rust/arrow/src/compute/kernels/take.rs             |  26 +--
 rust/arrow/src/compute/util.rs                     |   4 +-
 rust/arrow/src/datatypes.rs                        | 190 ++++++---------------
 rust/arrow/src/ipc/convert.rs                      | 103 +++--------
 rust/arrow/src/ipc/reader.rs                       |   4 +-
 rust/arrow/src/json/reader.rs                      |  87 ++++++----
 rust/arrow/src/record_batch.rs                     |  36 ----
 rust/arrow/src/util/integration_util.rs            |  10 +-
 .../src/physical_plan/distinct_expressions.rs      |   7 +-
 rust/datafusion/src/physical_plan/functions.rs     |  10 +-
 rust/datafusion/src/physical_plan/planner.rs       |   2 +-
 rust/datafusion/src/scalar.rs                      |   8 +-
 rust/datafusion/tests/sql.rs                       |   6 +-
 .../src/bin/arrow-json-integration-test.rs         |  25 +--
 rust/parquet/src/arrow/array_reader.rs             |  11 +-
 rust/parquet/src/arrow/arrow_writer.rs             |  30 ++--
 rust/parquet/src/arrow/schema.rs                   |  95 +++++------
 25 files changed, 317 insertions(+), 472 deletions(-)