Skip to content

Commit

Permalink
[fix](regression) Fix some p0 case (apache#45333)
Browse files Browse the repository at this point in the history
fix `test_partial_update_2pc_schema_change` and
`test_f_2pc_schema_change` case due to changes in
apache#45211
  • Loading branch information
bobhan1 authored and shuke987 committed Dec 23, 2024
1 parent b845813 commit 90df044
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ suite("test_partial_update_2pc_schema_change", "p0") {

String db = context.config.getDbNameByFile(context.file)
sql "select 1;" // to create database

def user = context.config.jdbcUser
def password = context.config.jdbcPassword
for (def use_row_store : [false, true]) {
logger.info("current params: use_row_store: ${use_row_store}")

connect(user = context.config.jdbcUser, password = context.config.jdbcPassword, url = context.config.jdbcUrl) {
connect( user, password, context.config.jdbcUrl) {
sql "use ${db};"

def tableName = "test_partial_update_2pc_schema_change"
Expand Down

0 comments on commit 90df044

Please sign in to comment.