slimit_alter_tags.sim 4.9 KB
Newer Older
S
slguan 已提交
1
system sh/stop_dnodes.sh
S
slguan 已提交
2 3

system sh/deploy.sh -n dnode1 -i 1
4
system sh/cfg.sh -n dnode1 -c walLevel -v 1
S
scripts  
slguan 已提交
5
system sh/cfg.sh -n dnode1 -c maxtablesPerVnode -v 2
S
slguan 已提交
6
system sh/exec.sh -n dnode1 -s start
H
Haojun Liao 已提交
7
sleep 100
S
slguan 已提交
8 9 10 11 12 13 14 15 16 17 18 19
sql connect

$dbPrefix = slm_alt_tg_db

print ========== slimit_alter_tag.sim
# make sure the data in each table crosses a file block boundary
$rowNum = 300
$ts0 = 1537146000000
$delta = 600000
$db = $dbPrefix

sql drop database if exists $db
sangshuduo's avatar
sangshuduo 已提交
20
sql create database $db maxrows 200
S
slguan 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
sql use $db

sql create table stb (ts timestamp, c1 int, c2 bigint, c3 double) tags(t1 int, t2 int)
# If grouped by t2, some groups should have tables from different vnodes
sql create table tb0 using stb tags (0, 0)
sql create table tb1 using stb tags (1, 0)
sql create table tb2 using stb tags (2, 0)
sql create table tb3 using stb tags (3, 1)
sql create table tb4 using stb tags (4, 1)
sql create table tb5 using stb tags (5, 1)
sql create table tb6 using stb tags (6, 2)
sql create table tb7 using stb tags (7, 2)
sql create table tb8 using stb tags (8, 2)
# tb9 is intentionally set the same tags with tb8
sql create table tb9 using stb tags (8, 2)

$i = 0
$tbNum = 10
while $i < $tbNum
  $tb = tb . $i
  $x = 0
  while $x < $rowNum
    $xs = $x * $delta
    $ts = $ts0 + $xs
    $c1 = $x * 10
    $c1 = $c1 + $i
    sql insert into $tb values ( $ts , $c1 , $c1 , $c1 )
    $x = $x + 1
  endw
  $i = $i + 1
endw

print ================== tables and data created

print ================== add a tag
sql alter table stb add tag tg_added binary(15)
sql describe stb
if $rows != 7 then
  return -1
endi
if $data60 != tg_added then
  return -1
endi

sql select count(*) from stb group by tg_added order by tg_added asc
if $rows != 1 then
   return -1
endi
$res = $rowNum * 10
if $data00 != $res then
  return -1
endi
#if $data01 != NULL then
#  return -1
#endi

print ================== change tag values
$i = 0
while $i < 10
  $tb = tb . $i
  $tg_added = ' . $tb
  $tg_added = $tg_added . ' 
  sql alter table $tb set tag tg_added = $tg_added
  $i = $i + 1
endw
86 87 88

sql select t1,t2,tg_added from tb0
if $rows != 1 then
S
slguan 已提交
89 90
  return -1
endi
91 92

if $data02 != tb0 then
S
slguan 已提交
93 94 95
  return -1
endi

H
Haojun Liao 已提交
96
sleep 500
S
slguan 已提交
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
sql reset query cache
sql select count(*), first(ts) from stb group by tg_added order by tg_added asc slimit 5 soffset 3
if $rows != 5 then
  print ===== result: $rows
  return -1
endi
if $data00 != $rowNum then
  return -1
endi
if $data10 != $rowNum then
  return -1
endi
if $data20 != $rowNum then
  return -1
endi
if $data30 != $rowNum then
  return -1
endi
if $data40 != $rowNum then
  return -1
endi
if $data02 != tb3 then
  return -1
endi
if $data12 != tb4 then
  return -1
endi
if $data22 != tb5 then
  return -1
endi
if $data32 != tb6 then
  return -1
endi
if $data42 != tb7 then
  return -1
endi

sql alter table tb9 set tag t2 = 3
sql select count(*), first(*) from stb group by t2 order by t2 slimit 6 soffset 1
if $rows != 3 then
  return -1
endi
$res = 3 * $rowNum
if $data00 != $res then
  return -1
endi
S
scripts  
Shengliang Guan 已提交
143 144 145
#if $data01 != @18-09-17 09:00:00.000@ then
#  return -1
#endi
S
slguan 已提交
146 147 148 149 150 151 152 153 154 155
if $data02 != 3 then
  return -1
endi
if $data05 != 1 then
  return -1
endi
$res = 3 * $rowNum
if $data10 != $res then
  return -1
endi
S
scripts  
Shengliang Guan 已提交
156 157 158
#if $data11 != @18-09-17 09:00:00.000@ then
#  return -1
#endi
S
slguan 已提交
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
if $data15 != 2 then
  return -1
endi
if $data20 != $rowNum then
  return -1
endi
if $data24 != 9.000000000 then
  return -1
endi
if $data25 != 3 then
  return -1
endi

print ================== restart server to commit data into disk
system sh/exec.sh -n dnode1 -s stop -x SIGINT
H
Haojun Liao 已提交
174
sleep 500
S
slguan 已提交
175 176 177
system sh/exec.sh -n dnode1 -s start
print ================== server restart completed
sql connect
H
Haojun Liao 已提交
178
sleep 100
S
slguan 已提交
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

sql use $db
### repeat above queries
sql select count(*), first(ts) from stb group by tg_added order by tg_added asc slimit 5 soffset 3;
if $rows != 5 then
  return -1
endi
if $data00 != $rowNum then
  return -1
endi
if $data10 != $rowNum then
  return -1
endi
if $data20 != $rowNum then
  return -1
endi
if $data30 != $rowNum then
  return -1
endi
if $data40 != $rowNum then
  return -1
endi
if $data02 != tb3 then
  return -1
endi
if $data12 != tb4 then
  return -1
endi
if $data22 != tb5 then
  return -1
endi
if $data32 != tb6 then
  return -1
endi
if $data42 != tb7 then
  return -1
endi

sql select count(*), first(*) from stb group by t2 order by t2 slimit 6 soffset 1
if $rows != 3 then
  return -1
endi
$res = 3 * $rowNum
if $data00 != $res then
  return -1
endi
S
scripts  
Shengliang Guan 已提交
225 226 227
#if $data01 != @18-09-17 09:00:00.000@ then
#  return -1
#endi
S
slguan 已提交
228 229 230 231 232 233 234 235 236 237
if $data02 != 3 then
  return -1
endi
if $data05 != 1 then
  return -1
endi
$res = 3 * $rowNum
if $data10 != $res then
  return -1
endi
S
scripts  
Shengliang Guan 已提交
238 239 240
#if $data11 != @18-09-17 09:00:00.000@ then
#  return -1
#endi
S
slguan 已提交
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
if $data15 != 2 then
  return -1
endi
if $data20 != $rowNum then
  return -1
endi
if $data24 != 9.000000000 then
  return -1
endi
if $data25 != 3 then
  return -1
endi

#sql drop database $db
#sql show databases
#if $rows != 0 then 
#  return -1
#endi
S
scripts  
Shengliang Guan 已提交
259 260

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