fix failed case

This commit is contained in:
dmchen 2024-04-15 10:08:14 +00:00
parent 4862a18d44
commit 870394c645
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ class TDTestCase:
tdSql.checkEqual(20470,len(tdSql.queryResult))
tdSql.query("select * from information_schema.ins_columns where db_name ='information_schema'")
tdSql.checkEqual(True, len(tdSql.queryResult) in range(227, 230))
tdSql.checkEqual(True, len(tdSql.queryResult) in range(230, 231))
tdSql.query("select * from information_schema.ins_columns where db_name ='performance_schema'")
tdSql.checkEqual(54, len(tdSql.queryResult))