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/04/01 12:00:03 UTC

[arrow] branch master updated (1757ba2 -> 090f11c)

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 1757ba2  ARROW-12160: [Rust] Add `into_inner()` to StreamWriter
     add 090f11c  ARROW-10354: [Rust][DataFusion] regexp_extract function to select regex groups from strings

No new revisions were added by this update.

Summary of changes:
 rust/arrow/src/array/mod.rs                        |   1 +
 rust/arrow/src/compute/kernels/mod.rs              |   1 +
 rust/arrow/src/compute/kernels/regexp.rs           | 160 +++++++++++++++++++++
 rust/arrow/src/compute/mod.rs                      |   1 +
 rust/datafusion/src/logical_plan/expr.rs           |   1 +
 rust/datafusion/src/logical_plan/mod.rs            |   8 +-
 rust/datafusion/src/physical_plan/functions.rs     | 122 +++++++++++++++-
 .../src/physical_plan/regex_expressions.rs         |  15 ++
 rust/datafusion/src/scalar.rs                      |   6 +-
 rust/datafusion/tests/sql.rs                       |  11 ++
 10 files changed, 319 insertions(+), 7 deletions(-)
 create mode 100644 rust/arrow/src/compute/kernels/regexp.rs