Merge remote-tracking branch 'origin/develop' into feature/os

This commit is contained in:
Shengliang Guan 2020-07-31 03:07:51 +00:00
commit ee429df86b
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ INCLUDE_DIRECTORIES(inc)
AUX_SOURCE_DIRECTORY(${CMAKE_CURRENT_SOURCE_DIR}/src SRC)
ADD_LIBRARY(twal ${SRC})
TARGET_LINK_LIBRARIES(twal common osdetail tutil)
TARGET_LINK_LIBRARIES(twal tutil common)
ADD_SUBDIRECTORY(test)

View File

@ -76,7 +76,7 @@ class Test:
tdSql.query("select * from st")
except Exception as 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))
def create_stable(self):