You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by jo...@apache.org on 2021/02/14 12:21:13 UTC

[arrow] branch master updated (356c300 -> 8547c61)

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

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


    from 356c300  ARROW-11603: [Rust] Fix Clippy Lints for Rust 1.50
     add 05fe095  ARROW-11570: [Rust] ScalarValue - support Date64
     add 2be54a5  ARROW-11563: [Rust] Support Cast(Utf8, TimeStamp(Nanoseconds, None))
     add d6fee75  ARROW-11557: [Rust][Datafusion] Add deregister_table
     add 34e7671  ARROW-11539: [Developer][Archery] Change items_per_seconds units
     add a350ebc  ARROW-11606: [Rust] [DataFusion] Add input schema to HashAggregateExec
     add 7660a22  ARROW-11586: [Rust][Datafusion] Remove force unwrap
     add 88e9eb8  ARROW-11599: [Rust] Add function to create array with all nulls
     add f55a3f3  ARROW-11594: [Rust] Support pretty printing of  NullArray
     add 8547c61  ARROW-11446: [DataFusion] Added support for scalarValue in Builtin functions.

No new revisions were added by this update.

Summary of changes:
 dev/archery/archery/benchmark/compare.py           |   6 +-
 rust/arrow/src/array/array.rs                      | 221 ++++++++
 rust/arrow/src/array/mod.rs                        |   1 +
 rust/arrow/src/array/null.rs                       |  20 +-
 rust/arrow/src/compute/kernels/cast.rs             |  36 ++
 .../src/compute/kernels/cast_utils.rs}             | 283 +---------
 rust/arrow/src/compute/kernels/mod.rs              |   1 +
 rust/arrow/src/error.rs                            |   2 +
 rust/arrow/src/util/display.rs                     |   3 +
 rust/arrow/src/util/pretty.rs                      |  45 +-
 rust/datafusion/examples/simple_udf.rs             |  13 +-
 rust/datafusion/src/execution/context.rs           |  38 +-
 rust/datafusion/src/execution/dataframe_impl.rs    |   6 +-
 .../src/physical_plan/array_expressions.rs         |  23 +-
 .../src/physical_plan/crypto_expressions.rs        | 191 +++++--
 .../src/physical_plan/datetime_expressions.rs      | 578 +++++++++------------
 .../src/physical_plan/expressions/binary.rs        |   1 +
 .../src/physical_plan/expressions/mod.rs           | 169 +-----
 .../expressions/{mod.rs => nullif.rs}              | 187 ++-----
 rust/datafusion/src/physical_plan/functions.rs     | 202 ++++---
 .../datafusion/src/physical_plan/hash_aggregate.rs |  17 +-
 .../src/physical_plan/math_expressions.rs          |  44 +-
 rust/datafusion/src/physical_plan/mod.rs           |   1 +
 rust/datafusion/src/physical_plan/parquet.rs       |  18 +-
 rust/datafusion/src/physical_plan/planner.rs       |  26 +
 .../src/physical_plan/string_expressions.rs        | 229 ++++++--
 rust/datafusion/src/scalar.rs                      | 183 +++++--
 rust/datafusion/src/sql/planner.rs                 |   2 +-
 rust/datafusion/tests/sql.rs                       |  28 +-
 29 files changed, 1309 insertions(+), 1265 deletions(-)
 copy rust/{datafusion/src/physical_plan/datetime_expressions.rs => arrow/src/compute/kernels/cast_utils.rs} (51%)
 copy rust/datafusion/src/physical_plan/expressions/{mod.rs => nullif.rs} (50%)