add some tests
This commit is contained in:
parent
16f94e23dd
commit
5ab9f98169
|
@ -1,3 +1,4 @@
|
||||||
#################################
|
#################################
|
||||||
run general/user/testSuite.sim
|
run general/user/testSuite.sim
|
||||||
|
run general/table/testSuite.sim
|
||||||
##################################
|
##################################
|
||||||
|
|
|
@ -0,0 +1,71 @@
|
||||||
|
system sh/stop_dnodes.sh
|
||||||
|
system sh/deploy.sh -n dnode1 -m 192.168.0.1 -i 192.168.0.1
|
||||||
|
system sh/exec.sh -n dnode1 -s start
|
||||||
|
sql connect
|
||||||
|
|
||||||
|
print =============== create database
|
||||||
|
sql create database db
|
||||||
|
sql show databases
|
||||||
|
if $rows != 1 then
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
|
||||||
|
print $data00 $data01 $data02
|
||||||
|
|
||||||
|
print =============== create normal table
|
||||||
|
sql create table db.n1 (ts timestamp, i int)
|
||||||
|
sql show db.tables
|
||||||
|
if $rows != 1 then
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
|
||||||
|
print $data00 $data01 $data02
|
||||||
|
|
||||||
|
print =============== create super table
|
||||||
|
sql create table db.st (ts timestamp, i int) tags (j int)
|
||||||
|
sql show db.stables
|
||||||
|
if $rows != 1 then
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
|
||||||
|
print $data00 $data01 $data02
|
||||||
|
|
||||||
|
print =============== create child table
|
||||||
|
sql create table db.c1 using db.st tags(1)
|
||||||
|
sql create table db.c2 using db.st tags(2)
|
||||||
|
sql show db.tables
|
||||||
|
if $rows != 3 then
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
|
||||||
|
print $data00 $data01 $data02
|
||||||
|
print $data10 $data11 $data22
|
||||||
|
print $data20 $data11 $data22
|
||||||
|
|
||||||
|
print =============== insert data
|
||||||
|
sql insert into db.n1 values(now, 1)
|
||||||
|
sql insert into db.n1 values(now, 2)
|
||||||
|
sql insert into db.n1 values(now, 3)
|
||||||
|
|
||||||
|
print =============== query data
|
||||||
|
sql select * from db.n1
|
||||||
|
if $rows != 3 then
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
|
||||||
|
print $data00 $data01
|
||||||
|
print $data10 $data11
|
||||||
|
print $data20 $data11
|
||||||
|
|
||||||
|
if $data01 != 1 then
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
|
||||||
|
if $data11 != 2 then
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
|
||||||
|
if $data21 != 3 then
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
#################################
|
||||||
|
run general/table/basic.sim
|
||||||
|
##################################
|
|
@ -1,3 +1,3 @@
|
||||||
#################################
|
#################################
|
||||||
run general/user/basic.sim
|
#run general/user/basic.sim
|
||||||
##################################
|
##################################
|
||||||
|
|
Loading…
Reference in New Issue