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 2020/11/18 04:48:57 UTC

[arrow] branch master updated (ee3b137 -> c8c2110)

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 ee3b137  ARROW-10621: [Java] Put required libraries into the common directory
     add c8c2110  ARROW-10173: [Rust][DataFusion] Implement support for direct comparison to scalar values

No new revisions were added by this update.

Summary of changes:
 rust/arrow/src/compute/kernels/comparison.rs       |  70 ++++
 rust/datafusion/Cargo.toml                         |   4 +
 .../{math_query_sql.rs => filter_query_sql.rs}     |  74 ++---
 rust/datafusion/src/physical_plan/expressions.rs   | 362 ++++++++++++++-------
 rust/datafusion/src/physical_plan/filter.rs        |  15 +-
 rust/datafusion/src/physical_plan/functions.rs     |  20 +-
 .../datafusion/src/physical_plan/hash_aggregate.rs |   2 +
 rust/datafusion/src/physical_plan/mod.rs           |  26 +-
 rust/datafusion/src/physical_plan/projection.rs    |   1 +
 rust/datafusion/src/scalar.rs                      | 151 ++++++---
 rust/datafusion/tests/sql.rs                       |  25 ++
 11 files changed, 532 insertions(+), 218 deletions(-)
 copy rust/datafusion/benches/{math_query_sql.rs => filter_query_sql.rs} (55%)