This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new a49beb2c259 [Fix](regression test) Fix schema change concurrent with
txn regression case (#40765)
a49beb2c259 is described below
commit a49beb2c259e2ecbd3271a347628434a7b496c5d
Author: abmdocrt <[email protected]>
AuthorDate: Sat Sep 14 20:12:34 2024 +0800
[Fix](regression test) Fix schema change concurrent with txn regression
case (#40765)
## Proposed changes
PR #37669 introduced a new config
`enable_abort_txn_by_checking_conflict_txn=true`. This config will abort
schema while loading txn and restart coordinator, which causes
regression test failed. We set it to false to fix this test.
<!--Describe your changes.-->
---
.../suites/schema_change/test_schema_change_concurrent_with_txn.groovy | 1 +
1 file changed, 1 insertion(+)
diff --git
a/regression-test/suites/schema_change/test_schema_change_concurrent_with_txn.groovy
b/regression-test/suites/schema_change/test_schema_change_concurrent_with_txn.groovy
index 3a63e306ae1..a31a7786e44 100644
---
a/regression-test/suites/schema_change/test_schema_change_concurrent_with_txn.groovy
+++
b/regression-test/suites/schema_change/test_schema_change_concurrent_with_txn.groovy
@@ -22,6 +22,7 @@ suite('test_schema_change_concurrent_with_txn', 'docker') {
def options = new ClusterOptions()
options.enableDebugPoints()
options.feConfigs.add('publish_wait_time_second=-1')
+ options.feConfigs.add('enable_abort_txn_by_checking_conflict_txn=false')
docker(options) {
sql 'SET GLOBAL insert_visible_timeout_ms = 2000'
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]