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 da9400d63 IMPALA-13302: Restore registering all conjuncts
new bcba81a1d IMPALA-11663: Update documentation for MT_DOP
new b7452c66b IMPALA-11934: Adjust the timeout interval for temporary file
tests
new 3f0a5cc93 IMPALA-13022: Added infrastructure for implicit casting of
functions
The 3 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:
be/src/runtime/io/disk-io-mgr-test.cc | 47 +-
be/src/runtime/tmp-file-mgr-test.cc | 33 +-
docs/topics/impala_mt_dop.xml | 7 -
.../impala/calcite/coercenodes/CoerceNodes.java | 665 +++++++++++++++++++++
.../calcite/coercenodes/CoerceOperandShuttle.java | 280 +++++++++
...lyzedNullLiteral.java => AnalyzedCaseExpr.java} | 40 +-
...lyzedNullLiteral.java => AnalyzedCastExpr.java} | 32 +-
.../functions/AnalyzedFunctionCallExpr.java | 2 +-
.../impala/calcite/functions/FunctionResolver.java | 124 +++-
.../calcite/functions/ImplicitTypeChecker.java | 158 +++++
.../impala/calcite/functions/RexCallConverter.java | 80 ++-
.../calcite/functions/RexLiteralConverter.java | 6 +-
.../calcite/operators/ImpalaConvertletTable.java | 50 ++
.../operators/ImpalaCustomOperatorTable.java | 201 +++++++
.../impala/calcite/operators/ImpalaOperator.java | 10 +-
.../calcite/operators/ImpalaOperatorTable.java | 15 +-
.../impala/calcite/rel/node/ImpalaAggRel.java | 2 +-
.../impala/calcite/rel/node/ImpalaJoinRel.java | 2 +-
.../impala/calcite/rel/node/ImpalaPlanRel.java | 37 ++
.../impala/calcite/rel/node/ImpalaValuesRel.java | 37 +-
.../calcite/rel/node/ParentPlanRelContext.java | 14 +
.../impala/calcite/service/CalciteOptimizer.java | 8 +-
.../calcite/service/CalciteRelNodeConverter.java | 4 +-
.../impala/calcite/type/ImpalaTypeConverter.java | 63 ++
.../impala/calcite/type/ImpalaTypeSystemImpl.java | 114 +++-
.../java/org/apache/impala/CompatibilityTest.java | 96 +++
.../queries/QueryTest/calcite.test | 303 +++++++++-
27 files changed, 2271 insertions(+), 159 deletions(-)
create mode 100644
java/calcite-planner/src/main/java/org/apache/impala/calcite/coercenodes/CoerceNodes.java
create mode 100644
java/calcite-planner/src/main/java/org/apache/impala/calcite/coercenodes/CoerceOperandShuttle.java
copy
java/calcite-planner/src/main/java/org/apache/impala/calcite/functions/{AnalyzedNullLiteral.java
=> AnalyzedCaseExpr.java} (55%)
copy
java/calcite-planner/src/main/java/org/apache/impala/calcite/functions/{AnalyzedNullLiteral.java
=> AnalyzedCastExpr.java} (63%)
create mode 100644
java/calcite-planner/src/main/java/org/apache/impala/calcite/functions/ImplicitTypeChecker.java
create mode 100644
java/calcite-planner/src/main/java/org/apache/impala/calcite/operators/ImpalaConvertletTable.java
create mode 100644
java/calcite-planner/src/main/java/org/apache/impala/calcite/operators/ImpalaCustomOperatorTable.java
create mode 100755
java/calcite-planner/src/test/java/org/apache/impala/CompatibilityTest.java