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 2022/04/07 20:16:24 UTC

[arrow-datafusion] branch master updated (ddf29f112 -> 9815ac6ec)

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-datafusion.git


    from ddf29f112 implement 'StringConcat' operator to support sql like "select 'aa' || 'b' " (#2142)
     add 9815ac6ec Handle merged schemas in parquet pruning (#2170)

No new revisions were added by this update.

Summary of changes:
 datafusion/core/src/datasource/file_format/avro.rs |   8 +-
 datafusion/core/src/datasource/file_format/csv.rs  |   8 +-
 datafusion/core/src/datasource/file_format/json.rs |  11 +-
 datafusion/core/src/datasource/file_format/mod.rs  |  11 +-
 .../core/src/datasource/file_format/parquet.rs     | 158 ++++++++++++++++++---
 datafusion/core/src/datasource/listing/table.rs    |   5 +-
 .../core/src/physical_plan/file_format/mod.rs      |  12 ++
 .../core/src/physical_plan/file_format/parquet.rs  | 157 ++++++++++++++++----
 datafusion/core/src/row/mod.rs                     |   2 +-
 9 files changed, 317 insertions(+), 55 deletions(-)