Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[branch-2.0] Fix duplicate table name in p0 cases #41092

Merged
merged 1 commit into from
Sep 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ suite("test_partial_update_only_keys", "p0") {

connect(user = context.config.jdbcUser, password = context.config.jdbcPassword, url = context.config.jdbcUrl) {
sql "use ${db};"
def tableName = "test_primary_key_partial_update"
def tableName = "test_partial_update_only_keys"
sql """ DROP TABLE IF EXISTS ${tableName} force"""
sql """ CREATE TABLE ${tableName} (
`k` BIGINT NOT NULL,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
suite("test_primary_key_partial_update_parallel", "p0") {

// case 1: concurrent partial update
def tableName = "test_primary_key_partial_update"
def tableName = "test_primary_key_partial_update_parallel"
sql """ DROP TABLE IF EXISTS ${tableName} """
sql """
CREATE TABLE ${tableName} (
Expand Down
Loading