This is an automated email from the ASF dual-hosted git repository. dbecker pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
from 7b25a7b07 IMPALA-13887: Incorporate column/field information into cache key new c5072807d IMPALA-12337: Implement delete orphan files for Iceberg table new bff356157 IMPALA-14194: Fix empty file handling with recent Ozone versions new 191aec529 IMPALA-14185: Error unnesting nested array from Iceberg with DELETE files 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/JniCatalog.thrift | 8 + .../AlterTableExecuteExpireSnapshotsStmt.java | 8 +- .../AlterTableExecuteRemoveOrphanFilesStmt.java | 125 +++++++++++ .../analysis/AlterTableExecuteRollbackStmt.java | 9 +- .../impala/analysis/AlterTableExecuteStmt.java | 23 +- .../org/apache/impala/catalog/FileDescriptor.java | 30 ++- .../iceberg/ImpalaIcebergDeleteOrphanFiles.java | 250 +++++++++++++++++++++ .../java/org/apache/impala/planner/UnnestNode.java | 14 ++ .../apache/impala/service/CatalogOpExecutor.java | 19 ++ .../impala/service/IcebergCatalogOpExecutor.java | 18 ++ .../org/apache/impala/analysis/AnalyzeDDLTest.java | 65 +++++- .../java/org/apache/impala/analysis/ToSqlTest.java | 22 ++ tests/query_test/test_iceberg.py | 68 ++++++ tests/query_test/test_nested_types.py | 23 ++ 14 files changed, 646 insertions(+), 36 deletions(-) create mode 100644 fe/src/main/java/org/apache/impala/analysis/AlterTableExecuteRemoveOrphanFilesStmt.java create mode 100644 fe/src/main/java/org/apache/impala/catalog/iceberg/ImpalaIcebergDeleteOrphanFiles.java