2022-03-07 11:25:29 +00:00
|
|
|
system sh/stop_dnodes.sh
|
|
|
|
|
system sh/deploy.sh -n dnode1 -i 1
|
|
|
|
|
system sh/exec.sh -n dnode1 -s start
|
|
|
|
|
sql connect
|
|
|
|
|
|
|
|
|
|
$dbPrefix = m_me_db
|
|
|
|
|
$tbPrefix = m_me_tb
|
|
|
|
|
$mtPrefix = m_me_mt
|
|
|
|
|
|
|
|
|
|
print =============== step1
|
|
|
|
|
$i = 0
|
|
|
|
|
$db = $dbPrefix . $i
|
|
|
|
|
$tb = $tbPrefix . $i
|
|
|
|
|
$mt = $mtPrefix . $i
|
|
|
|
|
|
|
|
|
|
sql drop database $db -x step1
|
|
|
|
|
step1:
|
|
|
|
|
sql create database $db
|
|
|
|
|
sql use $db
|
|
|
|
|
|
|
|
|
|
sql create table $mt (ts timestamp, speed int) TAGS(sp int)
|
|
|
|
|
sql show stables
|
2022-03-30 08:58:27 +00:00
|
|
|
if $rows != 1 then
|
2022-03-07 11:25:29 +00:00
|
|
|
return -1
|
|
|
|
|
endi
|
|
|
|
|
|
2022-07-18 02:57:56 +00:00
|
|
|
print =============== step2
|
|
|
|
|
sql drop table $mt
|
|
|
|
|
sql show stables
|
|
|
|
|
if $rows != 0 then
|
|
|
|
|
return -1
|
|
|
|
|
endi
|
|
|
|
|
|
|
|
|
|
print =============== step3
|
|
|
|
|
sql create table $mt (ts timestamp, speed int) TAGS(sp int)
|
2022-03-07 11:25:29 +00:00
|
|
|
|
2022-08-11 15:13:45 +00:00
|
|
|
sql select * from information_schema.ins_stables where db_name = '$@db@'
|
2022-03-30 08:58:27 +00:00
|
|
|
if $rows != 1 then
|
2022-03-07 11:25:29 +00:00
|
|
|
return -1
|
|
|
|
|
endi
|
2022-03-30 08:58:27 +00:00
|
|
|
if $data00 != $mt then
|
2022-03-07 11:25:29 +00:00
|
|
|
return -1
|
|
|
|
|
endi
|
2022-03-30 08:58:27 +00:00
|
|
|
if $data04 != 1 then
|
2022-03-07 11:25:29 +00:00
|
|
|
return -1
|
|
|
|
|
endi
|
2022-07-18 02:57:56 +00:00
|
|
|
sql select * from $mt
|
|
|
|
|
if $rows != 0 then
|
|
|
|
|
return -1
|
|
|
|
|
endi
|
2022-03-07 11:25:29 +00:00
|
|
|
|
|
|
|
|
print =============== step4
|
|
|
|
|
$i = 0
|
|
|
|
|
$tb = $tbPrefix . $i
|
|
|
|
|
sql create table $tb using $mt tags(1)
|
2022-03-30 08:58:27 +00:00
|
|
|
$i = 1
|
2022-03-07 11:25:29 +00:00
|
|
|
$tb = $tbPrefix . $i
|
|
|
|
|
sql create table $tb using $mt tags(2)
|
2022-03-30 08:58:27 +00:00
|
|
|
$i = 2
|
2022-03-07 11:25:29 +00:00
|
|
|
$tb = $tbPrefix . $i
|
|
|
|
|
sql create table $tb using $mt tags(3)
|
|
|
|
|
|
2022-08-11 15:13:45 +00:00
|
|
|
sql select * from information_schema.ins_tables where db_name = '$@db@'
|
2022-03-30 08:58:27 +00:00
|
|
|
if $rows != 3 then
|
2022-03-07 11:25:29 +00:00
|
|
|
return -1
|
|
|
|
|
endi
|
2022-07-18 02:57:56 +00:00
|
|
|
if $data04 != $mt then
|
|
|
|
|
return -1
|
|
|
|
|
endi
|
2022-03-07 11:25:29 +00:00
|
|
|
|
2022-08-11 15:13:45 +00:00
|
|
|
sql select * from information_schema.ins_stables where db_name = '$@db@'
|
2022-03-30 08:58:27 +00:00
|
|
|
if $rows != 1 then
|
2022-03-07 11:25:29 +00:00
|
|
|
return -1
|
|
|
|
|
endi
|
2022-03-30 08:58:27 +00:00
|
|
|
if $data00 != $mt then
|
2022-03-07 11:25:29 +00:00
|
|
|
return -1
|
|
|
|
|
endi
|
2022-07-18 02:57:56 +00:00
|
|
|
if $data03 != 2 then
|
|
|
|
|
return -1
|
|
|
|
|
endi
|
2022-03-07 11:25:29 +00:00
|
|
|
|
|
|
|
|
print =============== step5
|
|
|
|
|
$i = 0
|
|
|
|
|
$tb = $tbPrefix . $i
|
2022-03-30 08:58:27 +00:00
|
|
|
sql insert into $tb values (now + 1m , 1 )
|
2022-03-07 11:25:29 +00:00
|
|
|
$i = 1
|
|
|
|
|
$tb = $tbPrefix . $i
|
2022-03-30 08:58:27 +00:00
|
|
|
sql insert into $tb values (now + 1m , 1 )
|
2022-03-07 11:25:29 +00:00
|
|
|
$i = 2
|
|
|
|
|
$tb = $tbPrefix . $i
|
2022-03-30 08:58:27 +00:00
|
|
|
sql insert into $tb values (now + 1m , 1 )
|
2022-03-07 11:25:29 +00:00
|
|
|
|
|
|
|
|
print =============== step6
|
|
|
|
|
|
2022-07-18 02:57:56 +00:00
|
|
|
sql select * from $mt
|
|
|
|
|
print select * from $mt ==> $rows $data00
|
|
|
|
|
if $rows != 3 then
|
|
|
|
|
return -1
|
|
|
|
|
endi
|
2022-03-07 11:25:29 +00:00
|
|
|
|
|
|
|
|
print =============== step7
|
2022-07-18 02:57:56 +00:00
|
|
|
sql select * from $mt where sp = 1
|
|
|
|
|
print select * from $mt where sp = 1 ==> $rows $data00
|
|
|
|
|
if $rows != 1 then
|
|
|
|
|
return -1
|
|
|
|
|
endi
|
2022-03-07 11:25:29 +00:00
|
|
|
|
|
|
|
|
print =============== step8
|
|
|
|
|
sql drop table $mt
|
|
|
|
|
|
|
|
|
|
print =============== step9
|
|
|
|
|
|
2022-07-18 02:57:56 +00:00
|
|
|
sql show tables
|
|
|
|
|
if $rows != 0 then
|
|
|
|
|
return -1
|
|
|
|
|
endi
|
2022-03-07 11:25:29 +00:00
|
|
|
|
|
|
|
|
sql show stables
|
2022-03-30 08:58:27 +00:00
|
|
|
if $rows != 0 then
|
2022-03-07 11:25:29 +00:00
|
|
|
return -1
|
|
|
|
|
endi
|
|
|
|
|
|
|
|
|
|
sql drop database $db
|
2022-08-11 12:26:40 +00:00
|
|
|
sql select * from information_schema.ins_databases
|
2022-04-14 03:36:06 +00:00
|
|
|
if $rows != 2 then
|
2022-03-07 11:25:29 +00:00
|
|
|
return -1
|
|
|
|
|
endi
|
|
|
|
|
|
2022-05-21 09:07:56 +00:00
|
|
|
system sh/exec.sh -n dnode1 -s stop -x SIGINT
|