[TD-2560]<test> add test case for show tables
This commit is contained in:
parent
e0120e637a
commit
f175b1cd08
|
@ -39,6 +39,23 @@ class TDTestCase:
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
tdLog.exit(e)
|
tdLog.exit(e)
|
||||||
|
|
||||||
|
# case for defect: https://jira.taosdata.com:18080/browse/TD-2560
|
||||||
|
tdSql.execute("create table db.tb02 using st tags(2)")
|
||||||
|
tdSql.execute("create table db.tb03 using st tags(3)")
|
||||||
|
tdSql.execute("create table db.tb04 using st tags(4)")
|
||||||
|
|
||||||
|
tdSql.query("show tables like 'tb%' ")
|
||||||
|
tdSql.checkRows(4)
|
||||||
|
|
||||||
|
tdSql.query("show tables like 'tb0%' ")
|
||||||
|
tdSql.checkRows(3)
|
||||||
|
|
||||||
|
tdSql.execute("create table db.st0 (ts timestamp, i int) tags(j int)")
|
||||||
|
tdSql.execute("create table db.st1 (ts timestamp, i int, c2 int) tags(j int, loc nchar(20))")
|
||||||
|
|
||||||
|
tdSql.query("show stables like 'st%' ")
|
||||||
|
tdSql.checkRows(3)
|
||||||
|
|
||||||
def stop(self):
|
def stop(self):
|
||||||
tdSql.close()
|
tdSql.close()
|
||||||
tdLog.success("%s successfully executed" % __file__)
|
tdLog.success("%s successfully executed" % __file__)
|
||||||
|
|
Loading…
Reference in New Issue