未验证 提交 d70cef9f 编写于 作者: H huili 提交者: GitHub

Merge pull request #5443 from taosdata/test/testcase

[TD-3223]<test>case for stddev on the same column
......@@ -113,6 +113,12 @@ class TDTestCase:
for i in range(13):
tdSql.query('select stddev(c4) from s group by t%s' % str(i+1) )
#add for td-3223
for i in range(13):
if i == 1 or i == 5 or i == 6 or i == 7 or i == 9 or i == 8 :continue
tdSql.query('select stddev(c%d),stddev(c%d) from s group by c%d' %( i+1 , i+1 , i+1 ) )
def stop(self):
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册