Merge pull request #2426 from taosdata/regressionupdate

update regression tests
This commit is contained in:
Shengliang Guan 2020-06-23 15:43:58 +08:00 committed by GitHub
commit b51812074b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -47,7 +47,6 @@ class TDTestCase:
tdSql.query("select * from st")
tdSql.checkRows(1)
print("==============Case 2: keep adding columns, restart taosd")
tdSql.execute(
"create table dt(ts timestamp, tbcol1 tinyint) tags(tgcol1 tinyint)")
@ -72,7 +71,7 @@ class TDTestCase:
tdDnodes.forcestop(1)
tdDnodes.start(1)
tdSql.query("select * from st")
tdSql.query("select * from dt")
tdSql.checkRows(0)
def stop(self):

View File

@ -141,5 +141,7 @@ python3 ./test.py -f query/querySort.py
python3 ./test.py -f stream/stream1.py
python3 ./test.py -f stream/stream2.py
#alter table
python3 ./test.py -f alter/alter_table_crash.py