basic6.sim 4.9 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 4
system sh/exec.sh -n dnode1 -s start
sql connect
S
Shengliang Guan 已提交
5

S
slguan 已提交
6 7 8
print ============================ dnode1 start

$i = 0
S
Shengliang Guan 已提交
9
$dbPrefix = db
S
Shengliang Guan 已提交
10
$stPrefix = st
S
Shengliang Guan 已提交
11
$tbPrefix = tb
S
slguan 已提交
12
$db = $dbPrefix . $i
S
Shengliang Guan 已提交
13
$st = $stPrefix . $i
S
slguan 已提交
14 15 16
$tb = $tbPrefix . $i

print =============== step1
S
Shengliang Guan 已提交
17
sql create database $db replica 1 days 20 keep 2000 cache 16 vgroups 4
S
slguan 已提交
18 19 20 21 22
sql show databases
print $data00 $data01 $data02 $data03 $data04 $data05 $data06 $data07
if $data00 != $db then 
  return -1
endi
S
Shengliang Guan 已提交
23
if $data02 != 4 then 
S
slguan 已提交
24 25 26 27 28 29 30 31
  return -1
endi
if $data03 != 0 then 
  return -1
endi
if $data04 != 1 then 
  return -1
endi
S
scripts  
Shengliang Guan 已提交
32
if $data06 != 20 then 
S
slguan 已提交
33 34
  return -1
endi
S
scripts  
Shengliang Guan 已提交
35
if $data08 != 16 then 
S
slguan 已提交
36 37 38 39 40 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
  return -1
endi
 
print =============== step2
sql create database $db
sql show databases
if $rows != 1 then 
  return -1
endi 

print =============== step3
sql drop database $db
sql show databases
if $rows != 0 then 
  return -1
endi 

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

print =============== step5
sql create database $db replica 1 days 15 keep 1500
sql show databases
print $data00 $data01 $data02 $data03 $data04 $data05 $data06 $data07
if $data00 != $db then 
  return -1
endi
if $data03 != 0 then 
  return -1
endi
if $data04 != 1 then 
  return -1
endi
S
scripts  
Shengliang Guan 已提交
69
if $data06 != 15 then 
S
slguan 已提交
70 71 72
  return -1
endi

S
Shengliang Guan 已提交
73 74
return

S
slguan 已提交
75
print =============== step6
S
Shengliang Guan 已提交
76 77
$i = $i + 1
while $i < 5
S
slguan 已提交
78
  $db = $dbPrefix . $i
S
Shengliang Guan 已提交
79 80 81 82
  $st = $stPrefix . $i
  $tb = $tbPrefix . $i

  print create database $db
S
slguan 已提交
83
  sql create database $db
S
Shengliang Guan 已提交
84 85

  print use $db
S
slguan 已提交
86
  sql use $db
S
Shengliang Guan 已提交
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

  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

S
slguan 已提交
114 115 116
  $i = $i + 1
endw

S
Shengliang Guan 已提交
117
return 
S
slguan 已提交
118 119 120 121 122 123 124 125 126
print =============== step7
$i = 0
while $i < 5
  $db = $dbPrefix . $i  
  sql drop database $db 
  $i = $i + 1
endw

print =============== step8
S
Shengliang Guan 已提交
127
$i = 1
S
slguan 已提交
128
$db = $dbPrefix . $i
S
Shengliang Guan 已提交
129
$st = $stPrefix . $i
S
slguan 已提交
130 131 132
$tb = $tbPrefix . $i
sql create database $db
sql use $db
S
Shengliang Guan 已提交
133 134
sql create table $st (ts timestamp, i int) tags (j int)
sql create table $tb using $st tags(1)
S
Shengliang Guan 已提交
135

S
Shengliang Guan 已提交
136 137 138 139 140 141 142 143
sql show stables
if $rows != 1 then 
  return -1
endi

if $data00 != $st then 
  return -1
endi
S
Shengliang Guan 已提交
144

S
slguan 已提交
145 146 147 148 149
sql show tables
if $rows != 1 then 
  return -1
endi

S
Shengliang Guan 已提交
150 151 152 153
if $data00 != $tb then 
  return -1
endi

S
slguan 已提交
154 155 156 157 158 159
print =============== step9
sql drop database $db

print =============== step10
sql create database $db
sql use $db
S
Shengliang Guan 已提交
160 161 162 163 164 165

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

S
slguan 已提交
166 167 168 169 170 171
sql show tables
if $rows != 0 then 
  return -1
endi

print =============== step11
S
Shengliang Guan 已提交
172 173 174 175 176 177 178 179 180 181 182 183
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

S
slguan 已提交
184 185 186 187 188
sql show tables
if $rows != 1 then 
  return -1
endi

S
Shengliang Guan 已提交
189 190 191 192
if $data00 != $tb then 
  return -1
endi

S
slguan 已提交
193 194 195 196 197 198
print =============== step12
sql drop database $db

print =============== step13
sql create database $db
sql use $db
S
Shengliang Guan 已提交
199 200 201 202 203 204

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

S
slguan 已提交
205 206 207 208
sql show tables
if $rows != 0 then 
  return -1
endi
S
Shengliang Guan 已提交
209

S
Shengliang Guan 已提交
210 211 212 213 214 215 216 217 218 219 220 221 222
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

S
slguan 已提交
223 224 225 226
sql show tables
if $rows != 1 then 
  return -1
endi
S
Shengliang Guan 已提交
227

S
Shengliang Guan 已提交
228 229 230 231
if $data00 != $tb then 
  return -1
endi

S
slguan 已提交
232 233 234 235 236
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)
S
Shengliang Guan 已提交
237

S
slguan 已提交
238 239 240 241 242
sql select * from $tb
if $rows != 5 then 
  return -1
endi

S
Shengliang Guan 已提交
243 244 245 246 247
sql select * from $stb
if $rows != 5 then 
  return -1
endi

S
slguan 已提交
248 249 250 251 252 253
print =============== step14
sql drop database $db

print =============== step15
sql create database $db
sql use $db
S
Shengliang Guan 已提交
254 255 256 257 258 259

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

S
slguan 已提交
260 261 262 263 264 265
sql show tables
if $rows != 0 then 
  return -1
endi

print =============== step16
S
Shengliang Guan 已提交
266 267 268 269 270 271 272 273 274 275 276 277
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

S
slguan 已提交
278 279 280 281
sql show tables
if $rows != 1 then 
  return -1
endi
S
Shengliang Guan 已提交
282 283 284 285 286 287 288 289 290 291 292

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)

S
slguan 已提交
293
sql select * from $tb
S
Shengliang Guan 已提交
294 295 296 297 298 299
if $rows != 5 then 
  return -1
endi

sql select * from $stb
if $rows != 5 then 
S
slguan 已提交
300 301 302 303 304 305 306 307
  return -1
endi

sql drop database $db
sql show databases
if $rows != 0 then 
  return -1
endi
S
scripts  
slguan 已提交
308 309

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