This is an automated email from the ASF dual-hosted git repository. boroknagyz pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
commit 17ec3a85c7e3733dacb08a9fcca83fff5ec75102 Author: Zoltan Borok-Nagy <[email protected]> AuthorDate: Tue Sep 6 17:59:32 2022 +0200 IMPALA-11551: Bump CDP_BUILD_NUMBER to use Iceberg 0.14 This patch updates CDP_BUILD_NUMBER to 31397203 which includes Iceberg 0.14. This newer version of Iceberg adds a couple new table properties to the table which we can ignore during test_show_create_table. Change-Id: If4ac72fa76b09808a65e31dd55ff662d849ac2a3 Reviewed-on: http://gerrit.cloudera.org:8080/18944 Tested-by: Impala Public Jenkins <[email protected]> Reviewed-by: Gabor Kaszab <[email protected]> --- bin/impala-config.sh | 22 +++++++++++----------- tests/metadata/test_show_create_table.py | 5 ++++- 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/bin/impala-config.sh b/bin/impala-config.sh index 75ea97525..736f3fc8c 100755 --- a/bin/impala-config.sh +++ b/bin/impala-config.sh @@ -198,19 +198,19 @@ fi : ${IMPALA_TOOLCHAIN_HOST:=native-toolchain.s3.amazonaws.com} export IMPALA_TOOLCHAIN_HOST -export CDP_BUILD_NUMBER=30010248 +export CDP_BUILD_NUMBER=31397203 export CDP_MAVEN_REPOSITORY=\ "https://${IMPALA_TOOLCHAIN_HOST}/build/cdp_components/${CDP_BUILD_NUMBER}/maven" -export CDP_AVRO_JAVA_VERSION=1.8.2.7.2.16.0-127 -export CDP_HADOOP_VERSION=3.1.1.7.2.16.0-127 -export CDP_HBASE_VERSION=2.4.6.7.2.16.0-127 -export CDP_HIVE_VERSION=3.1.3000.7.2.16.0-127 -export CDP_ICEBERG_VERSION=0.13.1.7.2.16.0-127 -export CDP_KNOX_VERSION=1.3.0.7.2.16.0-127 -export CDP_OZONE_VERSION=1.1.0.7.2.16.0-127 -export CDP_PARQUET_VERSION=1.10.99.7.2.16.0-127 -export CDP_RANGER_VERSION=2.3.0.7.2.16.0-127 -export CDP_TEZ_VERSION=0.9.1.7.2.16.0-127 +export CDP_AVRO_JAVA_VERSION=1.8.2.7.2.16.0-164 +export CDP_HADOOP_VERSION=3.1.1.7.2.16.0-164 +export CDP_HBASE_VERSION=2.4.6.7.2.16.0-164 +export CDP_HIVE_VERSION=3.1.3000.7.2.16.0-164 +export CDP_ICEBERG_VERSION=0.14.0.7.2.16.0-164 +export CDP_KNOX_VERSION=1.3.0.7.2.16.0-164 +export CDP_OZONE_VERSION=1.1.0.7.2.16.0-164 +export CDP_PARQUET_VERSION=1.10.99.7.2.16.0-164 +export CDP_RANGER_VERSION=2.3.0.7.2.16.0-164 +export CDP_TEZ_VERSION=0.9.1.7.2.16.0-164 # Ref: https://infra.apache.org/release-download-pages.html#closer : ${APACHE_MIRROR:="https://www.apache.org/dyn/closer.cgi"} diff --git a/tests/metadata/test_show_create_table.py b/tests/metadata/test_show_create_table.py index 5fd04c59c..b1309c635 100644 --- a/tests/metadata/test_show_create_table.py +++ b/tests/metadata/test_show_create_table.py @@ -41,7 +41,10 @@ class TestShowCreateTable(ImpalaTestSuite): "bucketing_version", "OBJCAPABILITIES", "TRANSLATED_TO_EXTERNAL", "previous_metadata_location", "impala.events.catalogServiceId", - "impala.events.catalogVersion", "uuid"] + "impala.events.catalogVersion", "uuid", + "current-schema", "snapshot-count", "default-partition-spec", + "current-snapshot-id", "current-snapshot-summary", + "current-snapshot-timestamp-ms"] @classmethod def get_workload(self):
