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 2024/01/31 09:59:20 UTC

(arrow-datafusion) branch main updated (4d389c2590 -> 78447d6081)

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

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


    from 4d389c2590 Remove single_file_output option from FileSinkConfig and Copy statement (#9041)
     add 78447d6081  Add a make_date function (#9040)

No new revisions were added by this update.

Summary of changes:
 datafusion-examples/README.md                      |   1 +
 datafusion-examples/examples/make_date.rs          | 120 +++++++++++
 datafusion/expr/src/built_in_function.rs           |  10 +
 datafusion/expr/src/expr_fn.rs                     |   1 +
 .../physical-expr/src/datetime_expressions.rs      | 221 ++++++++++++++++++++-
 datafusion/physical-expr/src/functions.rs          |   1 +
 datafusion/proto/proto/datafusion.proto            |   1 +
 datafusion/proto/src/generated/pbjson.rs           |   3 +
 datafusion/proto/src/generated/prost.rs            |   3 +
 datafusion/proto/src/logical_plan/from_proto.rs    |  11 +
 datafusion/proto/src/logical_plan/to_proto.rs      |   1 +
 datafusion/sqllogictest/test_files/timestamps.slt  | 164 +++++++++++++++
 docs/source/user-guide/sql/scalar_functions.md     |  39 ++++
 13 files changed, 569 insertions(+), 7 deletions(-)
 create mode 100644 datafusion-examples/examples/make_date.rs