This is an automated email from the ASF dual-hosted git repository. jiayuliu pushed a change to branch move-udf-udaf-expr in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git.
discard 2547502 fix compile err discard d5eb258 fix imported types discard 310927b udf and udaf discard 3540d00 pyarrow add 4b68273 move built-in scalar functions (#1764) new 6c312cc pyarrow new dea1867 udf and udaf new b0e6800 fix imported types new 62c9062 split expr type and null info to be expr-schemable new 6ca6163 move accumulator and columnar value This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (2547502) \ N -- N -- N refs/heads/move-udf-udaf-expr (6ca6163) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. The 5 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: datafusion-expr/Cargo.toml | 1 - datafusion-expr/src/expr.rs | 892 --------------------- datafusion-expr/src/lib.rs | 12 +- datafusion-expr/src/udaf.rs | 94 +-- datafusion-expr/src/udf.rs | 98 +-- datafusion-expr/src/window_function.rs | 78 -- datafusion/src/logical_plan/builder.rs | 1 + datafusion/src/logical_plan/expr.rs | 737 ++++++++++++++++- datafusion/src/logical_plan/expr_schema.rs | 180 +++++ datafusion/src/logical_plan/mod.rs | 2 + .../src/optimizer/common_subexpr_eliminate.rs | 2 +- datafusion/src/optimizer/simplify_expressions.rs | 8 +- datafusion/tests/simplification.rs | 1 + 13 files changed, 1022 insertions(+), 1084 deletions(-) create mode 100644 datafusion/src/logical_plan/expr_schema.rs