This commit is contained in:
cpwu 2022-05-20 20:18:35 +08:00
parent ad85c93b0b
commit c3c30034fd
1 changed files with 2 additions and 2 deletions

View File

@ -85,11 +85,11 @@ class TDTestCase:
tdSql.execute("drop database if exists db1") tdSql.execute("drop database if exists db1")
tdSql.execute("create database db1 wal 1 fsync 3000") tdSql.execute("create database db1 wal 1 fsync 6000")
tdSql.query("show databases") tdSql.query("show databases")
for i in range(tdSql.queryRows): for i in range(tdSql.queryRows):
if tdSql.queryResult[i][0] == "db1": if tdSql.queryResult[i][0] == "db1":
tdSql.checkData(i, fsync_index, 180000) tdSql.checkData(i, fsync_index, 6000)
tdSql.checkData(i, wal_index, 1) tdSql.checkData(i, wal_index, 1)
tdSql.execute("drop database if exists db1") tdSql.execute("drop database if exists db1")