This is an automated email from the ASF dual-hosted git repository.
asherman pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git
from afb4e0b79 IMPALA-11661: Added new api in MetastoreServiceHandler for
find_next_compact2 method
new 66efe50d1 IMPALA-10893: Use old schema during iceberg time travel.
new f2f6b4b58 IMPALA-11375 Impala shell outputs details of each RPC
The 2 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:
bin/impala-shell.sh | 11 +-
.../java/org/apache/impala/analysis/Analyzer.java | 45 +-
.../org/apache/impala/analysis/BaseTableRef.java | 4 +-
.../apache/impala/analysis/DescriptorTable.java | 17 +-
.../java/org/apache/impala/analysis/TableRef.java | 17 +-
.../org/apache/impala/analysis/TimeTravelSpec.java | 21 +-
.../org/apache/impala/catalog/FeIcebergTable.java | 2 +
.../impala/catalog/IcebergPositionDeleteTable.java | 7 +
.../org/apache/impala/catalog/IcebergTable.java | 6 +-
.../impala/catalog/IcebergTimeTravelTable.java | 593 +++++++++++++++++++++
.../impala/catalog/iceberg/IcebergCtasTarget.java | 6 +
.../impala/catalog/local/LocalIcebergTable.java | 5 +
.../apache/impala/analysis/AnalyzeStmtsTest.java | 3 +-
shell/impala_client.py | 433 +++++++++------
shell/impala_shell.py | 14 +-
shell/impala_shell_config_defaults.py | 2 +
shell/make_shell_tarball.sh | 1 +
shell/option_parser.py | 8 +
shell/packaging/make_python_package.sh | 1 +
shell/thrift_printer.py | 153 ++++++
tests/authorization/test_ranger.py | 116 ++++
tests/common/iceberg_test_suite.py | 40 +-
tests/query_test/test_iceberg.py | 147 +++--
tests/shell/test_shell_commandline.py | 103 ++++
tests/util/iceberg_util.py | 107 ++++
25 files changed, 1609 insertions(+), 253 deletions(-)
create mode 100644
fe/src/main/java/org/apache/impala/catalog/IcebergTimeTravelTable.java
create mode 100644 shell/thrift_printer.py
create mode 100644 tests/util/iceberg_util.py