This commit is contained in:
Bob Liu 2023-12-25 13:33:45 +08:00
parent 31c54e5eda
commit f672df239e
1 changed files with 2 additions and 2 deletions

View File

@ -182,8 +182,8 @@ class TDTestCase:
tdSql.checkRows(0)
tdSql.query(f'select count(1),sum(1) from (select count(1) from {self.ntbname} group by tbname order by tbname)')
tdSql.checkRows(1)
tdSql.checkData(0, 0, 2)
tdSql.checkData(0, 1, 2)
tdSql.checkData(0, 0, 1)
tdSql.checkData(0, 1, 1)
def count_query_stb(self,column_dict,tag_dict,stbname,tbnum,rownum):
tdSql.query(f'select count(tbname) from {stbname}')