fix: correct argment sql

This commit is contained in:
Alex Duan 2024-01-15 14:20:36 +08:00
parent 318293edf1
commit b44f3c10e6
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ class TDTestCase(TBase):
# check count always return value # check count always return value
sql = f"select count(*) from {self.db}.ta" sql = f"select count(*) from {self.db}.ta"
tdSql.query() tdSql.query(sql)
tdSql.checkRows(0) # countAlwaysReturnValue is false tdSql.checkRows(0) # countAlwaysReturnValue is false
# run # run