120 lines
1.7 KiB
Plaintext
120 lines
1.7 KiB
Plaintext
system sh/stop_dnodes.sh
|
|
system sh/deploy.sh -n dnode1 -i 1
|
|
system sh/exec.sh -n dnode1 -s start
|
|
sql connect
|
|
|
|
print =============== create database d1
|
|
sql create database d1 vgroups 1
|
|
sql create table d1.t1 (ts timestamp, i int);
|
|
sql create table d1.t2 (ts timestamp, i int);
|
|
sql create table d1.t3 (ts timestamp, i int);
|
|
sql create table d1.t4 (ts timestamp, i int);
|
|
|
|
sql select * from information_schema.ins_databases
|
|
if $rows != 3 then
|
|
return -1
|
|
endi
|
|
|
|
if $data20 != d1 then
|
|
return -1
|
|
endi
|
|
|
|
if $data22 != 1 then
|
|
return -1
|
|
endi
|
|
|
|
if $data24 != 1 then
|
|
return -1
|
|
endi
|
|
|
|
sql show d1.tables
|
|
if $rows != 4 then
|
|
return -1
|
|
endi
|
|
|
|
sql show d1.vgroups
|
|
if $rows != 1 then
|
|
return -1
|
|
endi
|
|
if $data00 != 2 then
|
|
return -1
|
|
endi
|
|
if $data01 != d1 then
|
|
return -1
|
|
endi
|
|
|
|
print =============== drop table
|
|
sql drop table d1.t1
|
|
|
|
sql select * from information_schema.ins_databases
|
|
if $rows != 3 then
|
|
return -1
|
|
endi
|
|
|
|
if $data20 != d1 then
|
|
return -1
|
|
endi
|
|
|
|
if $data22 != 1 then
|
|
return -1
|
|
endi
|
|
|
|
if $data24 != 1 then
|
|
return -1
|
|
endi
|
|
|
|
sql show d1.tables
|
|
if $rows != 3 then
|
|
return -1
|
|
endi
|
|
|
|
sql show d1.vgroups
|
|
if $rows != 1 then
|
|
return -1
|
|
endi
|
|
if $data00 != 2 then
|
|
return -1
|
|
endi
|
|
if $data01 != d1 then
|
|
return -1
|
|
endi
|
|
print =============== drop all table
|
|
sql drop table d1.t2
|
|
sql drop table d1.t3
|
|
sql drop table d1.t4
|
|
|
|
sql select * from information_schema.ins_databases
|
|
if $rows != 3 then
|
|
return -1
|
|
endi
|
|
|
|
if $data20 != d1 then
|
|
return -1
|
|
endi
|
|
|
|
if $data22 != 1 then
|
|
return -1
|
|
endi
|
|
|
|
if $data24 != 1 then
|
|
return -1
|
|
endi
|
|
|
|
sql show d1.tables
|
|
if $rows != 0 then
|
|
return -1
|
|
endi
|
|
|
|
sql show d1.vgroups
|
|
if $rows != 1 then
|
|
return -1
|
|
endi
|
|
if $data00 != 2 then
|
|
return -1
|
|
endi
|
|
if $data01 != d1 then
|
|
return -1
|
|
endi
|
|
|
|
system sh/exec.sh -n dnode1 -s stop -x SIGINT
|