This is an automated email from the ASF dual-hosted git repository.
parthc pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git.
from 399fc99 DRILL-5846: Improve parquet performance for Flat Data Types
new 17366d3 DRILL-6419: E2E Integration test for Lateral&Unnest
new 3af718f DRILL-6431: Unnest operator requires table and a single
column alias to be specified. Fixing the issues related to star column
renaming, same field name renaming and also enforcing that an alias column is
required for the unnest operator.
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../java/org/apache/drill/exec/ExecConstants.java | 1 +
.../physical/impl/unnest/UnnestRecordBatch.java | 16 +-
.../drill/exec/planner/physical/CorrelatePrel.java | 45 +-
.../drill/exec/planner/physical/UnnestPrel.java | 2 +-
.../planner/physical/visitor/BasePrelVisitor.java | 12 +
.../physical/visitor/JoinPrelRenameVisitor.java | 38 +-
.../exec/planner/physical/visitor/PrelVisitor.java | 4 +
.../physical/visitor/PrelVisualizerVisitor.java | 15 +-
.../physical/visitor/StarColumnConverter.java | 28 +-
.../drill/exec/planner/sql/SqlConverter.java | 7 +
.../impl/lateraljoin/TestE2EUnnestAndLateral.java | 227 ++
.../impl/lateraljoin/TestLateralPlans.java | 212 +-
.../impl/unnest/TestUnnestCorrectness.java | 2 -
.../unnest/TestUnnestWithLateralCorrectness.java | 13 +-
.../exec/physical/unit/PhysicalOpUnitTestBase.java | 30 +-
.../planner/logical/DrillLogicalTestutils.java | 70 +
.../org/apache/drill/test/BaseDirTestWatcher.java | 16 +
.../org/apache/drill/test/DrillTestWrapper.java | 21 +
.../lateraljoin/multipleFiles/cust_order_10_1.json | 2191 ++++++++++++++++++++
.../lateraljoin/multipleFiles/cust_order_10_2.json | 1302 ++++++++++++
.../cust_order_10_2_stringNationKey.json | 1302 ++++++++++++
...st_order_10_2_stringNationKey_ShipPriority.json | 1302 ++++++++++++
.../cust_order_10_2_stringOrderShipPriority.json | 1302 ++++++++++++
pom.xml | 2 +-
24 files changed, 8070 insertions(+), 90 deletions(-)
create mode 100644
exec/java-exec/src/test/java/org/apache/drill/exec/physical/impl/lateraljoin/TestE2EUnnestAndLateral.java
create mode 100644
exec/java-exec/src/test/java/org/apache/drill/exec/planner/logical/DrillLogicalTestutils.java
create mode 100644
exec/java-exec/src/test/resources/lateraljoin/multipleFiles/cust_order_10_1.json
create mode 100644
exec/java-exec/src/test/resources/lateraljoin/multipleFiles/cust_order_10_2.json
create mode 100644
exec/java-exec/src/test/resources/lateraljoin/multipleFiles/cust_order_10_2_stringNationKey.json
create mode 100644
exec/java-exec/src/test/resources/lateraljoin/multipleFiles/cust_order_10_2_stringNationKey_ShipPriority.json
create mode 100644
exec/java-exec/src/test/resources/lateraljoin/multipleFiles/cust_order_10_2_stringOrderShipPriority.json
--
To stop receiving notification emails like this one, please contact
[email protected].