未验证 提交 e91470ff 编写于 作者: H Hui Li 提交者: GitHub

Merge pull request #7340 from taosdata/test/TD-6038

[TD-6038]<test>query with in combined with and filter
......@@ -152,7 +152,13 @@ class TDTestCase:
#tdSql.query("select * from tb")
#tdSql.checkRows(1)
# For jira: https://jira.taosdata.com:18080/browse/TD-6038
tdSql.query('select count(ts) from db.tb where c1 = 0 and c3 in ("nchar0")')
tdSql.checkRows(1)
tdSql.checkData(0, 0, 1)
tdSql.query('select * from db.tb where c1 = 2 and c3 in ("nchar0")')
tdSql.checkRows(0)
def stop(self):
tdSql.close()
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册