test: valgrind case
This commit is contained in:
parent
de9b4358f1
commit
5a5c181db7
|
@ -31,7 +31,7 @@
|
||||||
./test.sh -f tsim/db/len.sim
|
./test.sh -f tsim/db/len.sim
|
||||||
./test.sh -f tsim/db/repeat.sim
|
./test.sh -f tsim/db/repeat.sim
|
||||||
./test.sh -f tsim/db/show_create_db.sim
|
./test.sh -f tsim/db/show_create_db.sim
|
||||||
# jira ./test.sh -f tsim/db/show_create_table.sim
|
./test.sh -f tsim/db/show_create_table.sim
|
||||||
./test.sh -f tsim/db/tables.sim
|
./test.sh -f tsim/db/tables.sim
|
||||||
./test.sh -f tsim/db/taosdlog.sim
|
./test.sh -f tsim/db/taosdlog.sim
|
||||||
|
|
||||||
|
@ -192,7 +192,7 @@
|
||||||
./test.sh -f tsim/mnode/basic5.sim
|
./test.sh -f tsim/mnode/basic5.sim
|
||||||
|
|
||||||
# ---- show
|
# ---- show
|
||||||
# jira ./test.sh -f tsim/show/basic.sim
|
./test.sh -f tsim/show/basic.sim
|
||||||
|
|
||||||
# ---- table
|
# ---- table
|
||||||
./test.sh -f tsim/table/autocreate.sim
|
./test.sh -f tsim/table/autocreate.sim
|
||||||
|
|
|
@ -95,6 +95,16 @@ sql select * from tb
|
||||||
sql insert into db.ctb values(now+3s, 2, 3, 4)
|
sql insert into db.ctb values(now+3s, 2, 3, 4)
|
||||||
sql select * from db.stb
|
sql select * from db.stb
|
||||||
|
|
||||||
|
sql alter table db.stb add tag t4 bigint
|
||||||
|
sql select * from db.stb
|
||||||
|
sql select * from db.stb
|
||||||
|
sql_error create table db.ctb2 using db.stb tags(101, "102")
|
||||||
|
sql create table db.ctb2 using db.stb tags(101, 102, "103", 104)
|
||||||
|
sql insert into db.ctb2 values(now, 1, 2, 3)
|
||||||
|
|
||||||
|
print =============== step6: query data
|
||||||
|
sql select * from db.stb where tbname = 'ctb2';
|
||||||
|
|
||||||
_OVER:
|
_OVER:
|
||||||
system sh/exec.sh -n dnode1 -s stop -x SIGINT
|
system sh/exec.sh -n dnode1 -s stop -x SIGINT
|
||||||
print =============== check
|
print =============== check
|
||||||
|
|
Loading…
Reference in New Issue