This commit is contained in:
Bob Liu 2023-12-28 18:01:30 +08:00
parent 424ab1bbe3
commit ef22830ca3
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ class TDTestCase:
tdSql.error(f"select irate(c1), abs(c1) from {dbname}.ct4 ")
# agg functions mix with agg functions
tdSql.query(f"select irate(c1), count(c5) from {dbname}.stb1 partition by tbname order by tbname")
tdSql.query(f"select irate(c1), count(c5) from {dbname}.stb1 partition by tbname having count(c5)>0 order by tbname")
tdSql.checkData(0, 0, 0.000000000)
tdSql.checkData(1, 0, 0.000000000)
tdSql.checkData(0, 1, 13)