limit2_query.sim 8.7 KB
Newer Older
H
Haojun Liao 已提交
1
sleep 100
S
slguan 已提交
2 3 4 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
sql connect

$dbPrefix = lm2_db
$tbPrefix = lm2_tb
$stbPrefix = lm2_stb
$tbNum = 10
$rowNum = 10000
$totalNum = $tbNum * $rowNum
$ts0 = 1537146000000
$delta = 600000
$tsu = $rowNum * $delta
$tsu = $tsu - $delta
$tsu = $tsu + $ts0

print ========== limit2.sim
$i = 0
$db = $dbPrefix . $i
$stb = $stbPrefix . $i
$tb = $tbPrefix . 0
print ====== use db
sql use $db

##### aggregation on stb with 6 tags + where + group by + limit offset
$val1 = 1
$val2 = $tbNum - 1
sql select count(*) from $stb where t1 > $val1 and t1 < $val2 group by t1, t2, t3, t4, t5, t6 order by t1 asc limit 1 offset 0
$val = $tbNum - 3
if $rows != $val then
  return -1
endi
if $data00 != $rowNum then
  return -1
endi
if $data01 != 2 then
  return -1
endi
if $data02 != tb2 then
39
  print expect tb2, actual: $data02
S
slguan 已提交
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 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
  return -1
endi
if $data03 != tb2 then
  return -1
endi
if $data04 != 2 then
  return -1
endi
if $data05 != 2 then
  return -1
endi

sql select count(*) from $stb where t2 like '%' and t1 > 2 and t1 < 5 group by t3, t4 order by t3 desc limit 1 offset 0
if $rows != 2 then
  return -1
endi
if $data00 != $rowNum then
  return -1
endi
if $data01 != tb4 then
  return -1
endi
if $data02 != 4 then
  return -1
endi
if $data11 != tb3 then
  return -1
endi
if $data12 != 3 then
  return -1
endi
sql select count(*) from $stb where t2 like '%' and t1 > 2 and t1 < 5 group by t3, t4 order by t3 desc limit 1 offset 1
if $rows != 0 then
  return -1
endi
## TBASE-348
sql_error select count(*) from $stb where t1 like 1

##### aggregation on tb + where + fill + limit offset
sql select max(c1) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, -1, -2) limit 10 offset 1
if $rows != 10 then
  return -1
endi
if $data00 != @18-09-17 09:05:00.000@ then
  return -1
endi
if $data01 != -1 then
  return -1
endi
if $data11 != 1 then
  return -1
endi
if $data90 != @18-09-17 09:50:00.000@ then
  return -1
endi
if $data91 != 5 then
  return -1
endi

$tb5 = $tbPrefix . 5
sql select max(c1), min(c2) from $tb5 where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, -1, -2, -3, -4) limit 10 offset 1
if $rows != 10 then
  return -1
endi
if $data00 != @18-09-17 09:05:00.000@ then
  return -1
endi
if $data01 != -1 then
  return -1
endi
if $data02 != -2 then
  return -1
endi
if $data11 != 1 then
  return -1
endi
if $data12 != -2 then
  return -1
endi
if $data90 != @18-09-17 09:50:00.000@ then
  return -1
endi
if $data91 != 5 then
  return -1
endi
if $data92 != -2 then
  return -1
endi

### [TBASE-350]
## tb + interval + fill(value) + limit offset
$tb = $tbPrefix . 0
$limit = $rowNum
$offset = $limit / 2
sql select max(c1), min(c2), sum(c3), avg(c4), stddev(c5), spread(c6), first(c7), last(c8), first(c9) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, -1, -2) limit $limit offset $offset
if $rows != $limit then
H
Haojun Liao 已提交
136
  print expect $limit, actual $rows
S
slguan 已提交
137 138 139 140 141 142 143 144 145
  return -1
endi
if $data01 != 0 then
  return -1
endi
if $data11 != -1 then
  return -1
endi

H
Haojun Liao 已提交
146 147 148 149 150
sql select max(c1) from lm2_tb0 where ts >= 1537146000000 and ts <= 1543145400000 interval(5m) fill(value, -1000, -2) limit 8200
if $rows != 8200 then
  return -1
endi

H
Haojun Liao 已提交
151 152 153
sql select max(c1) from lm2_tb0 where ts >= 1537146000000 and ts <= 1543145400000 interval(5m) fill(value, -1000) limit 100000;


H
Haojun Liao 已提交
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
sql select max(c1) from lm2_tb0 where ts >= 1537146000000 and ts <= 1543145400000 interval(5m) fill(value, -1000, -2) limit 10 offset 8190;
if $rows != 10 then
  return -1
endi

if $data00 != @18-10-15 19:30:00.000@ then
  return -1
endi

if $data01 != 5 then
  return -1
endi

if $data10 != @18-10-15 19:35:00.000@ then
  return -1
endi

if $data11 != -1000 then
  return -1
endi

if $data20 != @18-10-15 19:40:00.000@ then
  return -1
endi

if $data21 != 6 then
  return -1
endi

if $data30 != @18-10-15 19:45:00.000@ then
  return -1
endi

if $data31 != -1000 then
  return -1
endi

sql select max(c1) from lm2_tb0 where ts >= 1537146000000 and ts <= 1543145400000 interval(5m) fill(value, -1000, -2) limit 10 offset 10001;
if $rows != 10 then
  return -1
endi

if $data00 != @18-10-22 02:25:00.000@ then
  return -1
endi

if $data01 != -1000 then
  return -1
endi

if $data10 != @18-10-22 02:30:00.000@ then
  return -1
endi

if $data11 != 1 then
  return -1
endi

if $data20 != @18-10-22 02:35:00.000@ then
  return -1
endi

if $data21 != -1000 then
  return -1
endi

if $data30 != @18-10-22 02:40:00.000@ then
  return -1
endi

if $data31 != 2 then
  return -1
endi

sql select max(c1) from lm2_tb0 where ts >= 1537146000000 and ts <= 1543145400000 interval(5m) fill(value, -1000, -2) limit 10000 offset 10001;
print ====> needs to validate the last row result
if $rows != 9998 then
  return -1
endi


sql select max(c1) from lm2_tb0 where ts >= 1537146000000 and ts <= 1543145400000 interval(5m) fill(value, -1000, -2) limit 100 offset 20001;
if $rows != 0 then
  return -1
endi

S
slguan 已提交
240 241 242 243 244
# tb + interval + fill(linear) + limit offset
$limit = $rowNum
$offset = $limit / 2
sql select max(c1), min(c2), sum(c3), avg(c4), stddev(c5), spread(c6), first(c7), last(c8), first(c9) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(linear) limit $limit offset $offset
if $rows != $limit then
H
Haojun Liao 已提交
245
  print expect $limit, actual $rows
S
slguan 已提交
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
  return -1
endi
if $data01 != 0 then
  return -1
endi
if $data11 != 0 then
  return -1
endi
if $data13 != 0.500000000 then
  return -1
endi
if $data35 != 0.000000000 then
  return -1
endi
if $data46 != 0.000000000 then
  return -1
endi
if $data47 != 1 then
  return -1
endi
266
if $data57 != NULL then
S
slguan 已提交
267 268 269 270 271
  return -1
endi
if $data68 != binary3 then
  return -1
endi
272
if $data79 != NULL then
S
slguan 已提交
273 274 275 276 277 278 279 280
  return -1
endi

## tb + interval + fill(prev) + limit offset
$limit = $rowNum
$offset = $limit / 2
sql select max(c1), min(c2), sum(c3), avg(c4), stddev(c5), spread(c6), first(c7), last(c8), first(c9) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(prev) limit $limit offset $offset
if $rows != $limit then
H
Haojun Liao 已提交
281
  print expect $limit, actual: $rows
S
slguan 已提交
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

 
$limit = $rowNum
$offset = $limit / 2
$offset = $offset + 10
sql select max(c1), min(c2), sum(c3), avg(c4), stddev(c5), spread(c6), first(c7), last(c8), first(c9) from $tb where ts >= $ts0 and ts <= $tsu and c1 = 5 interval(5m) fill(value, -1, -2) limit $limit offset $offset
if $rows != $limit then
  return -1
endi
if $data01 != 5 then
  return -1
endi
if $data02 != 5 then
  return -1
endi
if $data03 != 5.000000000 then
  return -1
endi
if $data04 != 5.000000000 then
  return -1
endi
if $data05 != 0.000000000 then
  return -1
endi
if $data07 != 1 then
  return -1
endi
if $data08 != binary5 then
  return -1
endi
if $data09 != nchar5 then
  return -1
endi
317
if $data18 != NULL then
S
slguan 已提交
318 319
  return -1
endi
320
if $data19 != NULL then
S
slguan 已提交
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
  return -1
endi
if $data16 != -2.000000000 then
  return -1
endi
if $data17 != 1 then
  return -1
endi
if $data11 != -1 then
  return -1
endi

$limit = $rowNum
$offset = $limit * 2
$offset = $offset - 11
sql select max(c1), min(c2), sum(c3), avg(c4), stddev(c5), spread(c6), first(c7), last(c8), first(c9) from $tb where ts >= $ts0 and ts <= $tsu and c1 = 5 interval(5m) fill(value, -1, -2) limit $limit offset $offset
if $rows != 10 then
  return -1
endi
if $data01 != -1 then
  return -1
endi
if $data02 != -2 then
  return -1
endi
if $data11 != 5 then
  return -1
endi
if $data12 != 5 then
  return -1
endi
if $data13 != 5.000000000 then
  return -1
endi
if $data15 != 0.000000000 then
  return -1
endi
if $data16 != 0.000000000 then
  return -1
endi
if $data18 != binary5 then
  return -1
endi
if $data19 != nchar5 then
  return -1
endi
if $data27 != 1 then
  return -1
endi
370
if $data38 != NULL then
S
slguan 已提交
371 372
  return -1
endi
373
if $data49 != NULL then
S
slguan 已提交
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
  return -1
endi

### [TBASE-350]
## stb + interval + fill + group by + limit offset
sql select max(c1), min(c2), sum(c3), avg(c4), first(c7), last(c8), first(c9) from $stb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, -1, -2) group by t1 limit 2 offset 10
if $rows != 20 then
  return -1
endi

$limit = 5
$offset = $rowNum * 2
$offset = $offset - 2
sql select max(c1), min(c2), sum(c3), avg(c4), first(c7), last(c8), first(c9) from $stb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, -1, -2) group by t1 order by t1 limit $limit offset $offset
if $rows != $tbNum then
  return -1
endi 
if $data00 != @18-11-25 19:30:00.000@ then
  return -1
endi
if $data01 != 9 then
  return -1
endi
if $data12 != 9 then
  return -1
endi
if $data23 != 9.000000000 then
  return -1
endi
if $data34 != 9.000000000 then
  return -1
endi
if $data45 != 1 then
  return -1
endi
if $data56 != binary9 then
  return -1
endi
if $data68 != 6 then
  return -1
endi
if $data72 != -2 then
  return -1
endi
if $data84 != -2.000000000 then
  return -1
endi
if $data98 != 9 then
  return -1
endi
H
Haojun Liao 已提交
424 425 426 427

#add one more test case
sql select max(c1), last(c8) from lm2_db0.lm2_tb0 where ts >= 1537146000000 and ts <= 1543145400000 interval(5m) fill(linear) limit 10 offset 4089;"