Merge pull request #2305 from taosdata/hotfix/sangshuduo/fix-del-stable-testcase
fix del_stable.py issue.
This commit is contained in:
commit
23738d25c0
|
@ -127,7 +127,7 @@ python3 ./test.py -f user/user_create.py
|
||||||
python3 ./test.py -f user/pass_len.py
|
python3 ./test.py -f user/pass_len.py
|
||||||
|
|
||||||
# table
|
# table
|
||||||
#python3 ./test.py -f table/del_stable.py
|
python3 ./test.py -f table/del_stable.py
|
||||||
|
|
||||||
#query
|
#query
|
||||||
python3 ./test.py -f query/filter.py
|
python3 ./test.py -f query/filter.py
|
||||||
|
|
|
@ -127,7 +127,7 @@ python3 ./test.py -f user/user_create.py
|
||||||
python3 ./test.py -f user/pass_len.py
|
python3 ./test.py -f user/pass_len.py
|
||||||
|
|
||||||
# table
|
# table
|
||||||
# python3 ./test.py -f table/del_stable.py
|
python3 ./test.py -f table/del_stable.py
|
||||||
|
|
||||||
#query
|
#query
|
||||||
python3 ./test.py -f query/filter.py
|
python3 ./test.py -f query/filter.py
|
||||||
|
|
|
@ -40,13 +40,13 @@ class TDTestCase:
|
||||||
try:
|
try:
|
||||||
tdSql.execute("select * from db.st")
|
tdSql.execute("select * from db.st")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
if e.args[0] != 'invalid table name':
|
if e.args[0] != 'mnode invalid table name':
|
||||||
tdLog.exit(e)
|
tdLog.exit(e)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
tdSql.execute("select * from db.tb")
|
tdSql.execute("select * from db.tb")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
if e.args[0] != 'invalid table name':
|
if e.args[0] != 'mnode invalid table name':
|
||||||
tdLog.exit(e)
|
tdLog.exit(e)
|
||||||
|
|
||||||
def stop(self):
|
def stop(self):
|
||||||
|
|
Loading…
Reference in New Issue