basic6.sim 5.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
system sh/exec.sh -n dnode1 -s start
sql connect

print ============================ dnode1 start

$i = 0
$dbPrefix = db
$stPrefix = st
$tbPrefix = tb
$db = $dbPrefix . $i
$st = $stPrefix . $i
$tb = $tbPrefix . $i

print =============== step1
P
plum-lihui 已提交
17
# quorum  presicion 
X
Xiaoyu Wang 已提交
18 19
#sql create database $db vgroups 8 replica 1 days 2880 keep 3650 cache 32 blocks 12 minrows 80 maxrows 10000 wal 2 fsync 1000 comp 0 cachelast 2 precision 'us'
sql create database $db vgroups 8 replica 1 days 2880 keep 3650 minrows 80 maxrows 10000 wal 2 fsync 1000 comp 0 cachelast 2 precision 'us'
20
sql show databases
P
plum-lihui 已提交
21 22
print $data00 $data01 $data02 $data03 $data04 $data05 $data06 $data07 $data08 $data09

23
if $rows != 3 then
P
plum-lihui 已提交
24 25
  return -1
endi
26
if $data20 != $db then
27 28
  return -1
endi
29
if $data22 != 8 then
30 31
  return -1
endi
32
if $data23 != 0 then
33 34
  return -1
endi
35
if $data24 != 1 then
36 37
  return -1
endi
38
if $data26 != 2880 then
39 40
  return -1
endi
41
if $data27 != 3650,3650,3650 then
P
plum-lihui 已提交
42 43
  return -1
endi
X
Xiaoyu Wang 已提交
44 45 46 47 48 49
#if $data28 != 32 then
#  return -1
#endi
#if $data29 != 12 then
#  return -1
#endi
50 51
 
print =============== step2
P
plum-lihui 已提交
52 53
sql_error create database $db
sql create database if not exists $db
54
sql show databases
55
if $rows != 3 then
56
  return -1
P
plum-lihui 已提交
57
endi
58 59 60

print =============== step3
sql drop database $db
D
dapan1121 已提交
61
sql show databases
62
if $rows != 2 then
D
dapan1121 已提交
63 64
  return -1
endi 
65 66 67 68 69

print =============== step4
sql_error drop database $db

print =============== step5
X
bugfix  
Xiaoyu Wang 已提交
70
sql create database $db replica 1 days 21600 keep 2160000
71 72
sql show databases
print $data00 $data01 $data02 $data03 $data04 $data05 $data06 $data07
73
if $data20 != $db then
74 75
  return -1
endi
76
if $data23 != 0 then
77 78
  return -1
endi
79
if $data24 != 1 then
80 81
  return -1
endi
82
if $data26 != 21600 then
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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
  return -1
endi

return

print =============== step6
$i = $i + 1
while $i < 5
  $db = $dbPrefix . $i
  $st = $stPrefix . $i
  $tb = $tbPrefix . $i

  print create database $db
  sql create database $db

  print use $db
  sql use $db

  print create table $st (ts timestamp, i int) tags (j int)
  sql create table $st (ts timestamp, i int) tags (j int)

  print create table $tb using $st tags(1)
  sql create table $tb using $st tags(1)

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

  print $data00 $data01 $data02 $data03
  if $data00 != $st then 
    return -1
  endi

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

  print $data00 $data01 $data02 $data03
  if $data00 != $tb then 
    return -1
  endi

  $i = $i + 1
endw

print =============== step7
$i = 0
while $i < 5
  $db = $dbPrefix . $i  
  sql drop database $db 
  $i = $i + 1
endw

print =============== step8
$i = 1
$db = $dbPrefix . $i
$st = $stPrefix . $i
$tb = $tbPrefix . $i
sql create database $db
sql use $db
sql create table $st (ts timestamp, i int) tags (j int)
sql create table $tb using $st tags(1)

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

if $data00 != $st then 
  return -1
endi

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

if $data00 != $tb then 
  return -1
endi

print =============== step9
sql drop database $db

print =============== step10
sql create database $db
sql use $db

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

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

print =============== step11
sql create table $st (ts timestamp, i int) tags (j int)
sql create table $tb using $st tags(1)

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

if $data00 != $st then 
  return -1
endi

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

if $data00 != $tb then 
  return -1
endi

print =============== step12
sql drop database $db

print =============== step13
sql create database $db
sql use $db

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

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

print ============== step14
sql create table $st (ts timestamp, i int) tags (j int)
sql create table $tb using $st tags(1)

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

if $data00 != $st then 
  return -1
endi

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

if $data00 != $tb then 
  return -1
endi

sql insert into $tb values (now+1a, 0)
sql insert into $tb values (now+2a, 1)
sql insert into $tb values (now+3a, 2)
sql insert into $tb values (now+4a, 3)
sql insert into $tb values (now+5a, 4)

sql select * from $tb
if $rows != 5 then 
  return -1
endi

sql select * from $stb
if $rows != 5 then 
  return -1
endi

print =============== step14
sql drop database $db

print =============== step15
sql create database $db
sql use $db

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

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

print =============== step16
sql create table $st (ts timestamp, i int) tags (j int)
sql create table $tb using $st tags(1)

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

if $data00 != $st then 
  return -1
endi

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

if $data00 != $tb then 
  return -1
endi

sql insert into $tb values (now+1a, 0)
sql insert into $tb values (now+2a, 1)
sql insert into $tb values (now+3a, 2)
sql insert into $tb values (now+4a, 3)
sql insert into $tb values (now+5a, 4)

sql select * from $tb
if $rows != 5 then 
  return -1
endi

sql select * from $stb
if $rows != 5 then 
  return -1
endi

sql drop database $db
sql show databases
317
if $rows != 2 then
318 319 320
  return -1
endi

D
dapan1121 已提交
321
system sh/exec.sh -n dnode1 -s stop -x SIGINT