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 916ec5d50 minor: remove unnecessary `continue` (#5200)
add 0dfc66da3 Add unnest_column to DataFrame (#5106)
No new revisions were added by this update.
Summary of changes:
datafusion/core/src/dataframe.rs | 20 ++
datafusion/core/src/physical_plan/mod.rs | 1 +
datafusion/core/src/physical_plan/planner.rs | 10 +-
datafusion/core/src/physical_plan/unnest.rs | 305 +++++++++++++++++++++
datafusion/core/tests/dataframe.rs | 176 +++++++++++-
datafusion/expr/src/lib.rs | 4 +-
datafusion/expr/src/logical_plan/builder.rs | 126 ++++++++-
datafusion/expr/src/logical_plan/mod.rs | 2 +-
datafusion/expr/src/logical_plan/plan.rs | 25 +-
datafusion/expr/src/utils.rs | 31 ++-
.../optimizer/src/common_subexpr_eliminate.rs | 1 +
datafusion/optimizer/src/push_down_projection.rs | 1 +
datafusion/proto/src/logical_plan/mod.rs | 3 +
13 files changed, 697 insertions(+), 8 deletions(-)
create mode 100644 datafusion/core/src/physical_plan/unnest.rs