Skip to content
Open
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 @@ -22,6 +22,9 @@ suite("test_tz_load", "nonConcurrent") {
def s3Region = getS3Region()
def ak = getS3AK()
def sk = getS3SK()
def originGlobalTimeZone = sql("select @@global.time_zone")[0][0]

try {

sql "drop table if exists ${table1}"

Expand Down Expand Up @@ -226,4 +229,8 @@ suite("test_tz_load", "nonConcurrent") {
}
sql "sync"
qt_global_offset "select * from ${table1} order by id"
}
} finally {
sql "SET GLOBAL time_zone = '${originGlobalTimeZone}'"
try_sql("drop table if exists ${table1}")
}
}
Loading