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 26e3529c9 IMPALA-14734: Optimize sorting file descriptors during
planning
new f0ac9a4b7 IMPALA-12844: Support setting DBPROPERTIES
new c3166ae53 IMPALA-14742: Guard against junit 5
new 1a814f5f0 IMPALA-14555: Add Iceberg support for SHOW PARTITIONS WHERE
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:
common/thrift/Frontend.thrift | 4 +
common/thrift/JniCatalog.thrift | 12 ++
docs/topics/impala_iceberg.xml | 46 ++++++
fe/pom.xml | 2 +
fe/src/main/cup/sql-parser.cup | 22 ++-
...DbStmt.java => AlterDbSetDbPropertiesStmt.java} | 38 +++--
.../org/apache/impala/analysis/CreateDbStmt.java | 10 +-
.../IcebergPartitionExpressionRewriter.java | 19 +++
.../org/apache/impala/analysis/ShowStatsStmt.java | 153 ++++++++++++++----
.../org/apache/impala/catalog/FeIcebergTable.java | 115 ++++++++++++--
.../impala/common/IcebergPredicateConverter.java | 6 +-
.../apache/impala/service/CatalogOpExecutor.java | 56 +++++--
.../java/org/apache/impala/service/Frontend.java | 14 +-
.../org/apache/impala/service/JniFrontend.java | 4 +-
.../org/apache/impala/analysis/AnalyzeDDLTest.java | 50 +++++-
.../org/apache/impala/analysis/ParserTest.java | 36 +++++
.../authorization/AuthorizationStmtTest.java | 34 ++++
.../authorization/ranger/RangerAuditLogTest.java | 16 ++
java/yarn-extras/pom.xml | 4 +
.../queries/QueryTest/create-database.test | 24 +++
.../queries/QueryTest/iceberg-drop-partition.test | 81 ++++++++++
.../queries/QueryTest/show-stats.test | 175 ++++++++++++++++++++-
tests/custom_cluster/test_events_custom_configs.py | 2 +
tests/metadata/test_ddl.py | 6 +
tests/metadata/test_ddl_base.py | 4 +
25 files changed, 840 insertions(+), 93 deletions(-)
copy fe/src/main/java/org/apache/impala/analysis/{AlterDbStmt.java =>
AlterDbSetDbPropertiesStmt.java} (60%)