This is an automated email from the ASF dual-hosted git repository. laszlog pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
commit 67cf0bb761688b469f9add19466475b2d6e637c2 Author: Riza Suminto <[email protected]> AuthorDate: Wed Mar 5 12:06:49 2025 -0800 IMPALA-13834: Fix test_kudu_txn_abort_partition_lock. IMPALA-10465 change execution of test_kudu_txn_abort_partition_lock. It meant to call _test_kudu_txn_abort_partition_lock() of superclass, but there is a copy-paste mistake that makes it call _test_kudu_txn_abort_partial_rows() instead. This patch fix it. Testing: - Run and pass test_kudu_txn_abort_partition_lock. Change-Id: I4f68177c12147c0890ddc04603890b7726dedfe4 Reviewed-on: http://gerrit.cloudera.org:8080/22581 Reviewed-by: Impala Public Jenkins <[email protected]> Tested-by: Riza Suminto <[email protected]> --- tests/custom_cluster/test_kudu.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/custom_cluster/test_kudu.py b/tests/custom_cluster/test_kudu.py index b6d5006b8..6825c3303 100644 --- a/tests/custom_cluster/test_kudu.py +++ b/tests/custom_cluster/test_kudu.py @@ -666,7 +666,7 @@ class TestKuduTransaction(TestKuduTransactionBase): @SkipIfKudu.no_hybrid_clock() @SkipIfBuildType.not_dev_build def test_kudu_txn_abort_partition_lock(self, cursor, unique_database): - self._test_kudu_txn_abort_partial_rows(cursor, unique_database) + self._test_kudu_txn_abort_partition_lock(cursor, unique_database) class TestKuduTransactionNoIgnore(TestKuduTransactionBase): @@ -724,7 +724,7 @@ class TestKuduTransactionNoIgnore(TestKuduTransactionBase): @SkipIfBuildType.not_dev_build @CustomClusterTestSuite.with_args(impalad_args=_impalad_args) def test_kudu_txn_abort_partition_lock(self, cursor, unique_database): - self._test_kudu_txn_abort_partial_rows(cursor, unique_database) + self._test_kudu_txn_abort_partition_lock(cursor, unique_database) class TestKuduTransactionIgnoreConflict(TestKuduTransactionBase):
