This is an automated email from the ASF dual-hosted git repository.
michaelsmith pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git
from a0aaf338a IMPALA-12732: Add support for MERGE statements for Iceberg
tables
new e3583cb20 IMPALA-13043: Implement Join Capability to the Calcite
Planner
new de1a925cb IMPALA-13349: Fix remaining tests with unexercised
exec_option
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:
.../calcite/functions/AnalyzedBinaryCompExpr.java | 67 +++
.../functions/AnalyzedFunctionCallExpr.java | 9 +-
.../impala/calcite/functions/FunctionResolver.java | 2 -
.../impala/calcite/functions/RexCallConverter.java | 32 +-
.../calcite/functions/RexLiteralConverter.java | 7 +-
.../calcite/rel/node/ConvertToImpalaRelRules.java | 14 +
.../impala/calcite/rel/node/ImpalaAggRel.java | 4 +-
.../impala/calcite/rel/node/ImpalaJoinRel.java | 465 +++++++++++++++++++++
.../impala/calcite/rel/node/ImpalaPlanRel.java | 1 +
.../impala/calcite/rel/node/ImpalaProjectRel.java | 2 +-
.../impala/calcite/rel/node/ImpalaSortRel.java | 2 +-
.../impala/calcite/rel/node/NodeCreationUtils.java | 4 +-
.../impala/calcite/rel/node/NodeWithExprs.java | 18 +
...laHdfsScanNode.java => ImpalaHashJoinNode.java} | 39 +-
...ScanNode.java => ImpalaNestedLoopJoinNode.java} | 38 +-
.../impala/calcite/service/CalciteOptimizer.java | 99 +++--
.../impala/calcite/type/ImpalaTypeConverter.java | 5 +
.../queries/QueryTest/calcite.test | 106 +++++
tests/common/impala_test_suite.py | 6 +-
tests/query_test/test_compressed_formats.py | 24 +-
tests/query_test/test_insert.py | 145 +++----
tests/query_test/test_insert_parquet.py | 37 +-
tests/query_test/test_mt_dop.py | 53 ++-
tests/query_test/test_parquet_stats.py | 40 +-
tests/query_test/test_sort.py | 53 +--
25 files changed, 1022 insertions(+), 250 deletions(-)
create mode 100644
java/calcite-planner/src/main/java/org/apache/impala/calcite/functions/AnalyzedBinaryCompExpr.java
create mode 100644
java/calcite-planner/src/main/java/org/apache/impala/calcite/rel/node/ImpalaJoinRel.java
copy
java/calcite-planner/src/main/java/org/apache/impala/calcite/rel/phys/{ImpalaHdfsScanNode.java
=> ImpalaHashJoinNode.java} (51%)
copy
java/calcite-planner/src/main/java/org/apache/impala/calcite/rel/phys/{ImpalaHdfsScanNode.java
=> ImpalaNestedLoopJoinNode.java} (52%)