fix: right parenthesis missing

This commit is contained in:
Alex Duan 2024-01-15 09:21:03 +08:00
parent 6b25731600
commit 10f1cbf734
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ class TDTestCase:
# query # query
col = f"c{i}" col = f"c{i}"
sql = f"select count({col}), sum({col}), avg({col}), max({col}), min({col}), stddev({col}, leastsquares({col},1,9)) from stb" sql = f"select count({col}), sum({col}), avg({col}), max({col}), min({col}), stddev({col}), leastsquares({col},1,9)) from stb"
tdSql.query(sql) tdSql.query(sql)
# sum # sum
tdSql.checkData(0, 0, 4*10000, True) tdSql.checkData(0, 0, 4*10000, True)