chore: adjust test case of information_schema

This commit is contained in:
kailixu 2024-12-29 18:20:51 +08:00
parent 70a3e969fa
commit 7715c6755d
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ class TDTestCase:
tdSql.query("select * from information_schema.ins_columns where db_name ='information_schema'")
tdLog.info(len(tdSql.queryResult))
tdSql.checkEqual(True, len(tdSql.queryResult) in range(312, 313))
tdSql.checkEqual(True, len(tdSql.queryResult) in range(306, 307))
tdSql.query("select * from information_schema.ins_columns where db_name ='performance_schema'")
tdSql.checkEqual(60, len(tdSql.queryResult))