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 af5f3acd6 IMPALA-13300: Upgrade Maven to 3.9.8
     new 0cb256ba4 IMPALA-13207: Update error message for operations on 
blacklist dbs
     new 135a8e76d IMPALA-12850: Add better error message for REFRESH 
iceberg_tbl PARTITION(...)
     new 632345542 IMPALA-13293: Fix too long wait for initial catalog update
     new cf28745d3 IMPALA-13246: Smallify strings during broadcast exchange
     new b028da18c IMPALA-12947: Implement Calcite Planner Union and Value 
RelNodes

The 5 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/benchmarks/row-batch-serialize-benchmark.cc |   3 +-
 be/src/runtime/buffered-tuple-stream-test.cc       |   3 +-
 be/src/runtime/buffered-tuple-stream.cc            |   2 +-
 be/src/runtime/row-batch-serialize-test.cc         |   6 +-
 be/src/runtime/row-batch.cc                        |   3 +-
 be/src/runtime/smallable-string.h                  |  10 ++
 be/src/runtime/string-value.h                      |   9 ++
 be/src/runtime/tuple.cc                            |  50 ++++-----
 be/src/runtime/tuple.h                             |  28 +++--
 .../org/apache/impala/analysis/PartitionSpec.java  |   6 ++
 .../apache/impala/analysis/PartitionSpecBase.java  |   4 +-
 .../org/apache/impala/catalog/ImpaladCatalog.java  |  10 ++
 .../impala/catalog/local/CatalogdMetaProvider.java |  19 ++++
 .../impala/catalog/local/DirectMetaProvider.java   |   5 +
 .../apache/impala/catalog/local/LocalCatalog.java  |   8 +-
 .../apache/impala/catalog/local/MetaProvider.java  |   6 ++
 .../java/org/apache/impala/planner/SelectNode.java |  10 ++
 .../apache/impala/service/CatalogOpExecutor.java   |   5 +-
 .../apache/impala/service/FeCatalogManager.java    |   3 +
 .../java/org/apache/impala/service/Frontend.java   |  16 +--
 .../org/apache/impala/analysis/AnalyzerTest.java   |   3 +
 .../calcite/rel/node/ConvertToImpalaRelRules.java  |  29 ++++-
 .../impala/calcite/rel/node/ImpalaFilterRel.java   |   5 +
 .../impala/calcite/rel/node/ImpalaHdfsScanRel.java |   5 +
 .../impala/calcite/rel/node/ImpalaPlanRel.java     |  23 +++-
 .../impala/calcite/rel/node/ImpalaProjectRel.java  |   5 +
 .../impala/calcite/rel/node/ImpalaUnionRel.java    |  89 +++++++++++++++
 .../impala/calcite/rel/node/ImpalaValuesRel.java   | 119 +++++++++++++++++++++
 .../impala/calcite/rel/node/NodeCreationUtils.java | 115 ++++++++++++++++++++
 .../calcite/rel/node/ParentPlanRelContext.java     |  25 ++++-
 .../impala/calcite/rel/phys/ImpalaUnionNode.java   |  45 ++++++++
 .../calcite/rel/util/TupleDescriptorFactory.java   |  96 +++++++++++++++++
 .../impala/calcite/service/CalciteOptimizer.java   |   4 +-
 .../calcite/service/CalcitePhysPlanCreator.java    |   7 +-
 .../queries/QueryTest/calcite.test                 |  38 +++++++
 35 files changed, 741 insertions(+), 73 deletions(-)
 create mode 100644 
java/calcite-planner/src/main/java/org/apache/impala/calcite/rel/node/ImpalaUnionRel.java
 create mode 100644 
java/calcite-planner/src/main/java/org/apache/impala/calcite/rel/node/ImpalaValuesRel.java
 create mode 100644 
java/calcite-planner/src/main/java/org/apache/impala/calcite/rel/node/NodeCreationUtils.java
 create mode 100644 
java/calcite-planner/src/main/java/org/apache/impala/calcite/rel/phys/ImpalaUnionNode.java
 create mode 100644 
java/calcite-planner/src/main/java/org/apache/impala/calcite/rel/util/TupleDescriptorFactory.java

Reply via email to