Merge pull request #2818 from taosdata/hotfix/sangshuduo/fix-stable-query-after-reset-case
change error wording determination to comply tdengine's change.
This commit is contained in:
commit
f5e6f0d7ff
|
@ -76,7 +76,7 @@ class Test:
|
||||||
tdSql.query("select * from st")
|
tdSql.query("select * from st")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
tdLog.info("Exception catched: %s" % repr(e))
|
tdLog.info("Exception catched: %s" % repr(e))
|
||||||
if ('mnode invalid table name' not in repr(e)):
|
if ('Table does not exist' not in repr(e)):
|
||||||
raise Exception(repr(e))
|
raise Exception(repr(e))
|
||||||
|
|
||||||
def create_stable(self):
|
def create_stable(self):
|
||||||
|
|
Loading…
Reference in New Issue