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

[TD-6038]<test>query with in combined with and filter
This commit is contained in:
Hui Li 2021-08-13 15:19:58 +08:00 committed by GitHub
commit e91470ff26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -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()