This is an automated email from the ASF dual-hosted git repository.
joemcdonnell pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git
from 64e43ad46 IMPALA-13410: Document reading Puffin files
new 7b109ca45 IMPALA-13457: Calcite planner: fix datetime/interval issues
for tpcds queries
new 3cf05fe21 IMPALA-13461: Added rules to make tpcds queries work.
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/calcite-planner/pom.xml | 17 ++
.../calcite/coercenodes/CoerceOperandShuttle.java | 31 ++-
.../impala/calcite/functions/IntervalExpr.java | 119 ++++++++++++
.../impala/calcite/functions/RexCallConverter.java | 62 ++++++
.../calcite/operators/ImpalaOperatorTable.java | 35 +++-
.../impala/calcite/rules/ExtractLiteralAgg.java | 86 +++++++++
.../calcite/rules/ImpalaMinusToDistinctRule.java | 214 +++++++++++++++++++++
.../impala/calcite/service/CalciteOptimizer.java | 44 ++++-
.../calcite/service/CalciteRelNodeConverter.java | 47 ++++-
9 files changed, 638 insertions(+), 17 deletions(-)
create mode 100644
java/calcite-planner/src/main/java/org/apache/impala/calcite/functions/IntervalExpr.java
create mode 100644
java/calcite-planner/src/main/java/org/apache/impala/calcite/rules/ExtractLiteralAgg.java
create mode 100644
java/calcite-planner/src/main/java/org/apache/impala/calcite/rules/ImpalaMinusToDistinctRule.java