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

thinkharderdev pushed a change to branch file-stream-pipeline
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


    omit f8a339db7 formatting
    omit 6fe699ca6 more descriptive method name
    omit a6a5605ce Apply suggestions from code review
    omit 8b100dab7 FileStream: Open next file in parallel while decoding
     add 11e8906b1 minor: port date_bin tests to sqllogictests (#5115)
     add f8607c238 Add option to control whether to normalize ident (#5124)
     add 8bae10b73 Minor: reduce indent level in page filter pruning code 
(#5105)
     add b6dbb8d8b [sqllogictest] Support `pg_typeof` (#5148)
     add f0c095802 Fix FairSpillPool try_grow for non-spillable consumers 
(#5160)
     add e41c4dffa Date to Timestamp cast (#5140)
     add 7d2d51b65 Compare NULL types (#5158)
     add 224c68210 Support coercing `utf8` to `interval` and `timestamp` 
(including arguments to `date_bin`) (#5117)
     add c75986506 Support arithmetic scalar operation with DictionaryArray 
(#5151)
     add 1ec2a8396 wip (#5167)
     add 379cf3948 fix: treat unsupported SQL plans as "not implemented" (#5159)
     add e69cd559b Update README.md (#5168)
     add 100665c48 feat: Type coercion for Dictionary(_, _) to Utf8 for regex 
conditions (#5152)
     add 953d16ba8 add example for Flight SQL server that supports JDBC driver 
(#5138)
     add c32372119 chore: add object_name_to_table_reference in SqlToRel (#5155)
     add b1d089fc0 Bump tokio from 1.24.1 to 1.24.2 in /datafusion-cli (#5172)
     add a213d62b3 Patch git safe paths (#5177)
     add 423375235 Fix decimal scalar dyn kernels (#5179)
     add b09c1eec4 Update README.md (#5190)
     add 6eb0e36e7 Support ORDER BY an aliased column (#5067)
     add a67ef9197 sqllogicaltest: use rowsort. (#5189)
     add fbbb1b469 Create disk manager spill folder if doesn't exist (#5185)
     add 0c3a4a3fb FileStream: Open next file in parallel while decoding
     add 423c60f15 Apply suggestions from code review
     add 4de759032 more descriptive method name
     add fa608533b formatting

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   (f8a339db7)
            \
             N -- N -- N   refs/heads/file-stream-pipeline (fa608533b)

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.

No new revisions were added by this update.

Summary of changes:
 .github/actions/setup-builder/action.yaml          |   4 +
 README.md                                          |   2 +-
 datafusion-cli/Cargo.lock                          |   4 +-
 datafusion-cli/Cargo.toml                          |   2 +-
 datafusion-examples/Cargo.toml                     |  13 +-
 datafusion-examples/README.md                      |   1 +
 datafusion-examples/examples/flight_sql_server.rs  | 610 +++++++++++++++++++++
 datafusion/common/src/config.rs                    |  16 +
 datafusion/core/Cargo.toml                         |   1 +
 datafusion/core/src/execution/context.rs           |  27 +-
 datafusion/core/src/execution/disk_manager.rs      |  13 +
 datafusion/core/src/execution/memory_pool/pool.rs  |  10 +-
 .../file_format/parquet/page_filter.rs             | 132 +++--
 datafusion/core/src/physical_plan/planner.rs       |  18 +-
 datafusion/core/tests/sql/errors.rs                |   9 +-
 datafusion/core/tests/sql/timestamp.rs             | 162 ++----
 .../src/engines/datafusion/create_table.rs         |  20 +-
 .../sqllogictests/src/engines/datafusion/insert.rs |   5 +-
 .../sqllogictests/src/engines/postgres/mod.rs      |   4 +
 .../sqllogictests/src/engines/postgres/types.rs}   |  40 +-
 .../core/tests/sqllogictests/test_files/ddl.slt    |  70 +++
 .../test_files/information_schema.slt              |   4 +-
 .../core/tests/sqllogictests/test_files/order.slt  |  95 ++++
 .../pg_compat/pg_compat_type_coercion.slt          | 175 ++++++
 .../test_files/pg_compat/pg_compat_union.slt       |  12 +-
 .../tests/sqllogictests/test_files/timestamps.slt  | 124 +++++
 .../core/tests/sqllogictests/test_files/union.slt  |  39 +-
 datafusion/expr/Cargo.toml                         |   4 +
 datafusion/expr/src/expr_rewriter.rs               |   5 +
 datafusion/expr/src/expr_rewriter/order_by.rs      | 165 +++---
 datafusion/expr/src/expr_schema.rs                 |   3 +
 datafusion/expr/src/type_coercion/binary.rs        | 109 ++--
 datafusion/expr/src/type_coercion/functions.rs     |  16 +-
 datafusion/optimizer/src/type_coercion.rs          |  33 +-
 datafusion/physical-expr/src/aggregate/sum.rs      |  15 +-
 datafusion/physical-expr/src/expressions/binary.rs | 494 ++++++++++++++++-
 .../src/expressions/binary/kernels_arrow.rs        | 164 ++++--
 datafusion/sql/Cargo.toml                          |   2 +
 datafusion/sql/src/expr/identifier.rs              |   5 +-
 datafusion/sql/src/planner.rs                      |  73 ++-
 datafusion/sql/src/relation/mod.rs                 |   6 +-
 datafusion/sql/src/statement.rs                    |  31 +-
 datafusion/sql/tests/integration_test.rs           |  81 +++
 datafusion/substrait/README.md                     |   2 +-
 docs/source/user-guide/configs.md                  |   2 +
 45 files changed, 2365 insertions(+), 457 deletions(-)
 create mode 100644 datafusion-examples/examples/flight_sql_server.rs
 copy datafusion/core/{src/physical_plan/sorts/mod.rs => 
tests/sqllogictests/src/engines/postgres/types.rs} (57%)
 create mode 100644 
datafusion/core/tests/sqllogictests/test_files/pg_compat/pg_compat_type_coercion.slt

Reply via email to