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

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

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

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


    from 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:
 rust/datafusion/examples/simple_udf.rs             |  13 +-
 rust/datafusion/src/execution/context.rs           |   9 +-
 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 ++++---
 .../src/physical_plan/math_expressions.rs          |  44 +-
 rust/datafusion/src/physical_plan/mod.rs           |   1 +
 .../src/physical_plan/string_expressions.rs        | 229 ++++++--
 rust/datafusion/src/scalar.rs                      |  95 +++-
 rust/datafusion/tests/sql.rs                       |  28 +-
 15 files changed, 1007 insertions(+), 769 deletions(-)
 copy rust/datafusion/src/physical_plan/expressions/{mod.rs => nullif.rs} (50%)