This is an automated email from the ASF dual-hosted git repository.
stigahuang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git
from 96ae16b60 IMPALA-13584: Add option to shows num row report in
impala-shell
new d8e18fac6 IMPALA-13991: Skip CROSS_JOIN rewrite if subquery is in
disjunctive
new c1aac4b3a IMPALA-13873: Missing equivalence conjunct in aggregation
node with inline views
new 295f74ef1 IMPALA-13989: Invalidate table on rename failure
new 0e3ae5c33 IMPALA-13996: Deflake test_too_many_files by creating
dedicate tables
new 56b465d91 IMPALA-13829: Postpone catalog deleteLog GC for
waitForHmsEvent requests
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/catalog/catalog-server.cc | 13 +++
be/src/util/backend-gflag-util.cc | 2 +
common/thrift/BackendGflags.thrift | 2 +
common/thrift/CatalogService.thrift | 3 +
.../apache/impala/analysis/MultiAggregateInfo.java | 24 ++++
.../org/apache/impala/analysis/StmtRewriter.java | 9 +-
.../org/apache/impala/catalog/CatalogDeltaLog.java | 49 ++++++--
.../impala/catalog/CatalogServiceCatalog.java | 2 +
.../apache/impala/planner/SingleNodePlanner.java | 9 +-
.../apache/impala/service/CatalogOpExecutor.java | 60 ++++++----
.../java/org/apache/impala/service/FeSupport.java | 1 -
.../java/org/apache/impala/service/Frontend.java | 4 +-
.../java/org/apache/impala/service/JniCatalog.java | 5 -
.../java/org/apache/impala/util/DebugUtils.java | 5 +
.../queries/PlannerTest/nested-loop-join.test | 36 ++++++
.../queries/PlannerTest/subquery-rewrite.test | 17 +--
.../queries/PlannerTest/union.test | 125 +++++++++++++++++++++
.../queries/QueryTest/aggregation.test | 45 ++++++++
.../queries/QueryTest/single-node-nlj.test | 17 +++
tests/custom_cluster/test_concurrent_ddls.py | 16 +--
tests/custom_cluster/test_concurrent_rename.py | 77 +++++++++++++
tests/custom_cluster/test_local_catalog.py | 14 ++-
tests/metadata/test_event_processing.py | 64 ++++++++++-
23 files changed, 529 insertions(+), 70 deletions(-)
create mode 100644 tests/custom_cluster/test_concurrent_rename.py