You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by mi...@apache.org on 2023/09/06 18:15:12 UTC

[impala] branch master updated: IMPALA-12420: Bump Kudu version to 1.17.0 release

This is an automated email from the ASF dual-hosted git repository.

michaelsmith pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git


The following commit(s) were added to refs/heads/master by this push:
     new 9585bc485 IMPALA-12420: Bump Kudu version to 1.17.0 release
9585bc485 is described below

commit 9585bc485f070cc79154429f4d361ddcd1a6f3f8
Author: stiga-huang <hu...@gmail.com>
AuthorDate: Tue Sep 5 21:33:15 2023 +0800

    IMPALA-12420: Bump Kudu version to 1.17.0 release
    
    We currently depend on a snapshot version of Kudu between 1.16.0 and
    1.17.0. This patch bumps the dependent Kudu version to 1.17.0.
    
    Modified the expected error message when inserting to Auto-Incrementing
    column (changed in KUDU-1945).
    
    Tests:
     - Verified kudu insert tests locally
    
    Change-Id: I01ec8928adfbeb0788356b49f1341088dc132e19
    Reviewed-on: http://gerrit.cloudera.org:8080/20452
    Reviewed-by: Wenzhe Zhou <wz...@cloudera.com>
    Reviewed-by: Michael Smith <mi...@cloudera.com>
    Tested-by: Michael Smith <mi...@cloudera.com>
---
 bin/impala-config.sh                                                | 4 ++--
 .../workloads/functional-query/queries/QueryTest/kudu_insert.test   | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/bin/impala-config.sh b/bin/impala-config.sh
index 7afa739f4..fa147f40e 100755
--- a/bin/impala-config.sh
+++ b/bin/impala-config.sh
@@ -85,7 +85,7 @@ export USE_AVRO_CPP=${USE_AVRO_CPP:=false}
 # moving to a different build of the toolchain, e.g. when a version is bumped or a
 # compile option is changed. The build id can be found in the output of the toolchain
 # build jobs, it is constructed from the build number and toolchain git hash prefix.
-export IMPALA_TOOLCHAIN_BUILD_ID=351-c240088ecb
+export IMPALA_TOOLCHAIN_BUILD_ID=358-e7cfab15d3
 # Versions of toolchain dependencies.
 # -----------------------------------
 if $USE_AVRO_CPP; then
@@ -959,7 +959,7 @@ fi
 # overall build type) and does not apply when using a local Kudu build.
 export USE_KUDU_DEBUG_BUILD=${USE_KUDU_DEBUG_BUILD-false}
 
-export IMPALA_KUDU_VERSION=${IMPALA_KUDU_VERSION-"14c326461c"}
+export IMPALA_KUDU_VERSION=${IMPALA_KUDU_VERSION-"1.17.0"}
 export IMPALA_KUDU_HOME=${IMPALA_TOOLCHAIN_PACKAGES_HOME}/kudu-$IMPALA_KUDU_VERSION
 export IMPALA_KUDU_JAVA_HOME=\
 ${IMPALA_TOOLCHAIN_PACKAGES_HOME}/kudu-${IMPALA_KUDU_VERSION}/java
diff --git a/testdata/workloads/functional-query/queries/QueryTest/kudu_insert.test b/testdata/workloads/functional-query/queries/QueryTest/kudu_insert.test
index ed09b3d61..d869ba217 100644
--- a/testdata/workloads/functional-query/queries/QueryTest/kudu_insert.test
+++ b/testdata/workloads/functional-query/queries/QueryTest/kudu_insert.test
@@ -569,14 +569,14 @@ NumRowErrors: 0
 insert into insert_non_unique_key_test_tbl1
 (id, auto_incrementing_id, vali, valv) values (4, 4, 4, 'four')
 ---- CATCH
-auto-incrementing column is incorrectly set
+Auto-Incrementing column should not be specified for INSERT operation
 ====
 ---- QUERY
 # Try to insert a row with value for auto_incrementing_id column
 insert into insert_non_unique_key_test_tbl1
 (id, auto_incrementing_id) values (5, 50000)
 ---- CATCH
-auto-incrementing column is incorrectly set
+Auto-Incrementing column should not be specified for INSERT operation
 ====
 ---- QUERY
 # Try to insert a row without value for key column
@@ -690,4 +690,4 @@ insert /*+clustered*/ into impala_10829_tbl
 ---- RUNTIME_PROFILE
 NumModifiedRows: 2
 NumRowErrors: 6
-====
\ No newline at end of file
+====