This commit is contained in:
cpwu 2022-05-26 17:35:31 +08:00
parent 73768e64bb
commit 59139c537e
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ class TDTestCase:
tdSql.checkData(0, 0, self.rows + 2)
tdSql.query("select hyperloglog(c1), c1 from stb1 group by c1")
for i in range(tdSql.queryRows):
tdSql.checkData(i, 0, 1) if tdSql.queryResult[i][1] is None else tdSql.checkData(i, 0, 0)
tdSql.checkData(i, 0, 1) if tdSql.queryResult[i][1] is not None else tdSql.checkData(i, 0, 0)