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 c10e74d1f IMPALA-13132: Stop Kudu in kill-all.sh
new e6825b7ed IMPALA-13197: Implement Analytic Exprs for Calcite
new 4289fa1a1 IMPALA-13197: (part 2) Added Analytic Expressions to Calcite
Planner
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/coercenodes/CoerceOperandShuttle.java | 53 ++-
.../calcite/functions/AnalyzedAnalyticExpr.java | 75 ++++
.../functions/AnalyzedFunctionCallExpr.java | 49 ++
.../impala/calcite/functions/FunctionResolver.java | 36 +-
.../impala/calcite/functions/RexCallConverter.java | 14 +-
.../operators/ImpalaCustomOperatorTable.java | 5 +
.../calcite/rel/node/ConvertToImpalaRelRules.java | 15 +-
.../impala/calcite/rel/node/ImpalaAnalyticRel.java | 494 +++++++++++++++++++++
.../impala/calcite/rel/util/CreateExprVisitor.java | 9 +-
.../queries/QueryTest/calcite.test | 62 +++
10 files changed, 799 insertions(+), 13 deletions(-)
create mode 100644
java/calcite-planner/src/main/java/org/apache/impala/calcite/functions/AnalyzedAnalyticExpr.java
create mode 100644
java/calcite-planner/src/main/java/org/apache/impala/calcite/rel/node/ImpalaAnalyticRel.java