You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by tu...@apache.org on 2023/06/06 13:41:32 UTC

[arrow-datafusion] branch main updated (70d633a71d -> 91e75d7e63)

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

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


    from 70d633a71d feat: support type coercion in Parquet Reader (#6458)
     add 91e75d7e63 Update to object_store 0.6 and arrow 41 (#6374)

No new revisions were added by this update.

Summary of changes:
 Cargo.toml                                         |  12 +-
 benchmarks/src/bin/parquet.rs                      |   2 +-
 datafusion-cli/Cargo.lock                          | 143 +++++++++++----------
 datafusion-cli/Cargo.toml                          |   6 +-
 datafusion-cli/src/exec.rs                         |   9 +-
 datafusion-cli/src/object_storage.rs               |  59 ++++++++-
 datafusion-examples/Cargo.toml                     |   2 +-
 datafusion-examples/examples/flight_sql_server.rs  |  93 +++++++++++++-
 .../examples/parquet_sql_multiple_files.rs         |   2 +-
 datafusion/common/Cargo.toml                       |   4 +-
 datafusion/common/src/pyarrow.rs                   |  12 +-
 datafusion/core/Cargo.toml                         |   2 +-
 datafusion/core/src/datasource/file_format/csv.rs  |   1 +
 datafusion/core/src/datasource/file_format/mod.rs  |   8 +-
 .../core/src/datasource/file_format/parquet.rs     |  17 +--
 datafusion/core/src/datasource/listing/mod.rs      |   2 +
 datafusion/core/src/datasource/listing/table.rs    |   1 +
 .../src/physical_plan/file_format/chunked_store.rs |   6 +-
 .../core/src/physical_plan/file_format/mod.rs      |   1 +
 .../core/src/physical_plan/file_format/parquet.rs  |   1 +
 datafusion/core/src/test/object_store.rs           |   1 +
 datafusion/core/src/test_util/parquet.rs           |   1 +
 datafusion/core/tests/parquet/custom_reader.rs     |   1 +
 datafusion/core/tests/parquet/page_pruning.rs      |   1 +
 datafusion/core/tests/parquet/schema_coercion.rs   |   1 +
 datafusion/core/tests/path_partition.rs            |  11 +-
 datafusion/execution/Cargo.toml                    |   2 +-
 datafusion/proto/Cargo.toml                        |   2 +-
 datafusion/proto/src/physical_plan/from_proto.rs   |   1 +
 datafusion/substrait/Cargo.toml                    |   2 +-
 datafusion/substrait/src/physical_plan/consumer.rs |   1 +
 31 files changed, 288 insertions(+), 119 deletions(-)