basic4.sim 1.6 KB
Newer Older
S
slguan 已提交
1
system sh/stop_dnodes.sh
S
slguan 已提交
2
system sh/deploy.sh -n dnode1 -i 1
S
slguan 已提交
3
system sh/exec.sh -n dnode1 -s start
H
Haojun Liao 已提交
4
sleep 2000
S
slguan 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
sql connect

print =============== create database d1
sql create database d1
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 show databases
if $rows != 1 then 
  return -1
endi

if $data00 != d1 then 
  return -1
endi

if $data02 != 4 then 
  return -1
endi

if $data03 != 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
S
slguan 已提交
40
if $data00 != 2 then 
S
slguan 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
  return -1
endi
if $data01 != 4 then 
  return -1
endi

print =============== drop table 
sql drop table d1.t1

sql show databases
if $rows != 1 then 
  return -1
endi

if $data00 != d1 then 
  return -1
endi

if $data02 != 3 then 
  return -1
endi

if $data03 != 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
S
slguan 已提交
76
if $data00 != 2 then 
S
slguan 已提交
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
  return -1
endi
if $data01 != 3 then 
  return -1
endi

print =============== drop all table 
sql drop table d1.t2
sql drop table d1.t3
sql drop table d1.t4

sql show databases
if $rows != 1 then 
  return -1
endi

if $data00 != d1 then 
  return -1
endi

if $data02 != 0 then 
  return -1
endi

if $data03 != 0 then 
  return -1
endi

sql show d1.tables
if $rows != 0 then 
  return -1
endi

sql show d1.vgroups
if $rows != 0 then 
  return -1
endi
S
scripts  
slguan 已提交
114 115

system sh/exec.sh -n dnode1 -s stop -x SIGINT