Skip to content

Commit

Permalink
enh: adjust the num of ins_columns
Browse files Browse the repository at this point in the history
  • Loading branch information
kailixu committed Nov 7, 2024
1 parent 0823c60 commit a6c7a7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/system-test/0-others/information_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def ins_columns_check(self):

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(280, 281))
tdSql.checkEqual(True, len(tdSql.queryResult) in range(281, 282))

tdSql.query("select * from information_schema.ins_columns where db_name ='performance_schema'")
tdSql.checkEqual(56, len(tdSql.queryResult))
Expand Down

0 comments on commit a6c7a7c

Please sign in to comment.