[TD-6006]<test> query where by column with no quotes

This commit is contained in:
zhaoyanggh 2021-08-12 14:59:57 +08:00
parent 520050e4f4
commit 6fafa5b1be
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__)