Merge pull request #7327 from taosdata/test/TD-6006

[TD-6006]<test> query where by column with no quotes
This commit is contained in:
Hui Li 2021-08-13 15:20:07 +08:00 committed by GitHub
commit 23e27ebb6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -65,6 +65,10 @@ class TDTestCase:
# TD-2208
tdSql.error("select diff(tagtype),top(tagtype,1) from dev_001")
# TD-6006
tdSql.error("select * from dev_001 where 'name' is not null")
tdSql.error("select * from dev_001 where \"name\" = 'first'")
def stop(self):
tdSql.close()
tdLog.success("%s successfully executed" % __file__)