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

[arrow] branch master updated (33a4290 -> 71e2cb2)

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 33a4290  ARROW-10684: [Rust] Inherit struct nulls in child null equality
     add 71e2cb2  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, 472 insertions(+), 317 deletions(-)