2020-03-31 10:34:51 +00:00
|
|
|
system sh/stop_dnodes.sh
|
2020-04-29 09:30:03 +00:00
|
|
|
system sh/deploy.sh -n dnode1 -i 1
|
2020-03-31 10:34:51 +00:00
|
|
|
system sh/exec.sh -n dnode1 -s start
|
2021-01-20 05:43:54 +00:00
|
|
|
sleep 2000
|
2020-03-31 10:34:51 +00:00
|
|
|
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
|
2020-04-08 05:46:36 +00:00
|
|
|
sql insert into db.n1 values(now+1s, 1)
|
|
|
|
|
sql insert into db.n1 values(now+2s, 2)
|
|
|
|
|
sql insert into db.n1 values(now+3s, 3)
|
2020-03-31 10:34:51 +00:00
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
2020-05-09 14:15:45 +00:00
|
|
|
print =============== drop stable
|
|
|
|
|
sql drop table db.st
|
|
|
|
|
sql show db.stables
|
|
|
|
|
if $rows != 0 then
|
|
|
|
|
return -1
|
|
|
|
|
endi
|
|
|
|
|
|
2020-05-07 15:02:31 +00:00
|
|
|
system sh/exec.sh -n dnode1 -s stop -x SIGINT
|