Skip to content

Commit eaa9d45

Browse files
authored
Fix downstream db in suites (#134)
1 parent 77aae2a commit eaa9d45

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

Diff for: regression-test/suites/db-sync-clean-restore/test_db_sync_clean_restore.groovy

+1
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ suite("test_db_sync_clean_restore") {
113113
)
114114
"""
115115

116+
target_sql "CREATE DATABASE IF NOT EXISTS TEST_${context.dbName}"
116117
target_sql """
117118
CREATE TABLE if NOT EXISTS ${tableName}_1
118119
(

Diff for: regression-test/suites/db-sync-signature-not-matched/test_db_sync_signature_not_matched.groovy

+1
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ suite("test_db_sync_signature_not_matched") {
117117
)
118118
"""
119119

120+
target_sql "CREATE DATABASE IF NOT EXISTS TEST_${context.dbName}"
120121
target_sql """
121122
CREATE TABLE if NOT EXISTS ${tableName}
122123
(

Diff for: regression-test/suites/table-sync/test_restore_clean_partitions.groovy

+1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ suite("test_restore_clean_partitions") {
111111
)
112112
"""
113113

114+
target_sql "CREATE DATABASE IF NOT EXISTS TEST_${context.dbName}"
114115
target_sql """
115116
CREATE TABLE if NOT EXISTS ${tableName}_1
116117
(

0 commit comments

Comments
 (0)