limit_stb.sim 23.4 KB
Newer Older
H
Haojun Liao 已提交
1
sleep 500
S
slguan 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
sql connect

$dbPrefix = lm_db
$tbPrefix = lm_tb
$stbPrefix = lm_stb
$tbNum = 10
$rowNum = 10
$totalNum = $tbNum * $rowNum
$ts0 = 1537146000000
$delta = 600000
print ========== limit_stb.sim
$i = 0
$db = $dbPrefix . $i
$stb = $stbPrefix . $i

print ====== use db
sql use $db

$tsu = $rowNum * $delta
$tsu = $tsu - $delta
$tsu = $tsu + $ts0
H
Haojun Liao 已提交
23
$tsu = $tsu + 9
S
slguan 已提交
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

##### select from supertable

# illegal operations
#sql_error select top(c1, 1) from $stb where ts >= $ts0 and ts <= $tsu limit 5 offset 1
#sql_error select bottom(c1, 1) from $stb where ts >= $ts0 and ts <= $tsu limit 5 offset 1

### select from stb + limit offset
sql select * from $stb limit 5
if $rows != 5 then
  return -1
endi
sql select * from $stb limit 5 offset 1
if $rows != 5 then
  return -1
endi
if $data01 != 1 then
  return -1
endi
if $data41 != 5 then
  return -1
endi

sql select * from $stb order by ts desc limit 5
if $rows != 5 then
  return -1
endi
51

S
slguan 已提交
52 53 54 55
sql select * from $stb order by ts desc limit 5 offset 1
if $rows != 5 then
  return -1
endi
56
if $data01 != 9 then
S
slguan 已提交
57 58
  return -1
endi
59
if $data11 != 9 then
S
slguan 已提交
60 61
  return -1
endi
62
if $data41 != 9 then
S
slguan 已提交
63 64
  return -1
endi
65

S
slguan 已提交
66
sql select * from $stb order by ts asc limit 5
S
scripts  
Shengliang Guan 已提交
67 68 69 70 71
print select * from $stb order by ts asc limit 5
print $data00 $data01
print $data10 $data11
print $data20 $data21

S
slguan 已提交
72 73 74 75 76 77
if $rows != 5 then
  return -1
endi
if $data00 != @18-09-17 09:00:00.000@ then
  return -1
endi
78

H
Haojun Liao 已提交
79
if $data40 != @18-09-17 09:00:00.004@ then
80 81 82
  return -1
endi

S
slguan 已提交
83 84 85
if $data01 != 0 then
  return -1
endi
86 87

print data12 = $data12
H
Haojun Liao 已提交
88
if $data12 != 0 then
S
slguan 已提交
89 90
  return -1
endi
91

H
Haojun Liao 已提交
92
if $data24 != 0.000000000 then
S
slguan 已提交
93 94
  return -1
endi
95 96

if $data35 != 0 then
S
slguan 已提交
97 98
  return -1
endi
99
if $data49 != nchar0 then
S
slguan 已提交
100 101 102 103 104 105 106
  return -1
endi

sql select * from $stb order by ts asc limit 5 offset 1
if $rows != 5 then
  return -1
endi
107
if $data01 != 0 then
S
slguan 已提交
108 109
  return -1
endi
110 111 112 113
if $data41 != 0 then
  return -1
endi

H
Haojun Liao 已提交
114
if $data40 != @18-09-17 09:00:00.005@ then
115 116 117
  return -1
endi

H
Haojun Liao 已提交
118
if $data00 != @18-09-17 09:00:00.001@ then
S
slguan 已提交
119 120 121 122 123 124 125
  return -1
endi

sql select * from $stb limit 500 offset 1
if $rows != 99 then
  return -1
endi
126

S
slguan 已提交
127 128 129 130 131 132
$offset = $tbNum * $rowNum
$offset = $offset - 1
sql select * from $stb limit 2 offset $offset
if $rows != 1 then
  return -1
endi
H
Haojun Liao 已提交
133
if $data00 != @18-09-17 10:30:00.009@ then
S
slguan 已提交
134 135 136 137 138
  return -1
endi
if $data01 != 9 then
  return -1
endi
139
if $data02 != NULL then
S
slguan 已提交
140 141 142 143 144
  return -1
endi
if $data03 != 9.00000 then
  return -1
endi
145
if $data04 != NULL then
S
slguan 已提交
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
  return -1
endi
if $data05 != 9 then
  return -1
endi
if $data06 != 9 then
  return -1
endi
if $data07 != 1 then
  return -1
endi
if $data08 != binary9 then
  return -1
endi
if $data09 != nchar9 then
  return -1
endi

$offset = $tbNum * $rowNum
$offset = $offset / 2
$offset = $offset - 1
sql select * from $stb limit 2 offset $offset
if $rows != 2 then
  return -1
endi
H
Haojun Liao 已提交
171
if $data00 != @18-09-17 10:30:00.002@ then
S
slguan 已提交
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
  return -1
endi
if $data01 != 9 then
  return -1
endi
if $data02 != 9 then
  return -1
endi
if $data03 != 9.00000 then
  return -1
endi
if $data04 != 9.000000000 then
  return -1
endi
if $data05 != 9 then
  return -1
endi
if $data06 != 9 then
  return -1
endi
if $data07 != 1 then
  return -1
endi
if $data08 != binary9 then
  return -1
endi
if $data09 != nchar9 then
  return -1
endi
H
Haojun Liao 已提交
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
#if $data10 != @18-09-17 09:00:00.000@ then
#  return -1
#endi
#if $data11 != 0 then
#  return -1
#endi
#if $data12 != NULL then
#  return -1
#endi
#if $data13 != 0.00000 then
#  return -1
#endi
#if $data14 != NULL then
#  return -1
#endi
#if $data15 != 0 then
#  return -1
#endi
#if $data16 != 0 then
#  return -1
#endi
#if $data17 != 1 then
#  return -1
#endi
#if $data18 != binary0 then
#  return -1
#endi
#if $data19 != nchar0 then
#  return -1
#endi
S
slguan 已提交
231 232 233 234 235 236 237 238 239 240 241 242 243 244

$offset = $rowNum * $tbNum
sql select * from lm_stb0 limit 2 offset $offset
if $rows != 0 then
  return -1
endi

sql select ts, c1, c2, c3, c4, c5, c6, c7, c8, c9 from $stb limit 1 offset 0;
if $rows != 1 then
  return -1
endi
if $data01 != 0 then
  return -1
endi
H
Haojun Liao 已提交
245

S
slguan 已提交
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
sql select ts, c1, c2, c3, c4, c5, c6, c7, c8, c9 from $stb limit 1 offset 1;
if $rows != 1 then
  return -1
endi
if $data01 != 1 then
  return -1
endi
sql select ts, c1, c2, c3, c4, c5, c6, c7, c8, c9 from $stb limit 1 offset 4;
if $rows != 1 then
  return -1
endi
if $data00 != @18-09-17 09:40:00.000@ then
  return -1
endi
if $data01 != 4 then
  return -1
endi
if $data02 != 4 then
  return -1
endi
if $data03 != 4.00000 then
  return -1
endi
if $data04 != 4.000000000 then
  return -1
endi
if $data05 != 4 then
  return -1
endi
if $data06 != 4 then
  return -1
endi
if $data08 != binary4 then
  return -1
endi
if $data09 != nchar4 then
  return -1
endi

### select from supertable + where + limit offset
H
Haojun Liao 已提交
286
sql select * from $stb where ts > '2018-09-17 09:30:00.000' and ts < '2018-09-17 10:30:00.000' order by ts asc limit 5 offset 1
S
slguan 已提交
287 288 289
if $rows != 5 then
  return -1
endi
H
Haojun Liao 已提交
290
if $data01 != 3 then
S
slguan 已提交
291 292
  return -1
endi
H
Haojun Liao 已提交
293
if $data11 != 3 then
S
slguan 已提交
294 295
  return -1
endi
H
Haojun Liao 已提交
296
if $data21 != 3 then
S
slguan 已提交
297 298
  return -1
endi
H
Haojun Liao 已提交
299
if $data31 != 3 then
S
slguan 已提交
300 301
  return -1
endi
H
Haojun Liao 已提交
302
if $data41 != 3 then
S
slguan 已提交
303 304 305
  return -1
endi

H
Haojun Liao 已提交
306
sql select * from $stb where ts > '2018-09-17 09:30:00.000' and ts < '2018-09-17 10:10:00.000' order by ts asc limit 5 offset 50
S
slguan 已提交
307 308 309 310
if $rows != 0 then
  return -1
endi

H
Haojun Liao 已提交
311
sql select * from $stb where ts > '2018-09-17 09:30:00.000' and ts < '2018-09-17 10:30:00.000' order by ts asc limit 5 offset 1
S
slguan 已提交
312 313 314
if $rows != 5 then
  return -1
endi
H
Haojun Liao 已提交
315
if $data01 != 3 then
S
slguan 已提交
316 317
  return -1
endi
H
Haojun Liao 已提交
318
if $data11 != 3 then
S
slguan 已提交
319 320
  return -1
endi
H
Haojun Liao 已提交
321
if $data21 != 3 then
S
slguan 已提交
322 323
  return -1
endi
H
Haojun Liao 已提交
324
if $data31 != 3 then
S
slguan 已提交
325 326
  return -1
endi
H
Haojun Liao 已提交
327
if $data41 != 3 then
S
slguan 已提交
328 329 330
  return -1
endi

H
Haojun Liao 已提交
331
sql select max(c1), min(c2), avg(c3), sum(c5), spread(c6), first(c7), last(c8), first(c9) from lm_stb0 where ts >= '2018-09-17 09:00:00.000' and ts <= '2018-09-17 10:30:00.009' order by ts asc limit 1 offset 0;
S
slguan 已提交
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 370 371 372 373 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 424 425 426 427
if $rows != 1 then
  return -1
endi
if $data00 != 9 then
  return -1
endi
if $data01 != 0 then
  return -1
endi
if $data02 != 4.500000000 then
  return -1
endi
$val = 45 * $rowNum
if $data03 != $val then
  return -1
endi
if $data04 != 9.000000000 then
  return -1
endi
if $data05 != 1 then
  return -1
endi
if $data06 != binary9 then
  return -1
endi
if $data07 != nchar0 then
  return -1 
endi

#sql select max(c1), min(c2), avg(c3), sum(c5), spread(c6), first(c7), last(c8), first(c9) from lm_stb0 where ts >= '2018-09-17 09:00:00.000' and ts <= '2018-09-17 10:30:00.000' and c1 > 1 and c2 < 9 and c3 > 2 and c4 < 8 and c5 > 3 and c6 < 7 and c7 > 0 and c8 like '%5' and t1 > 3 and t1 < 6 limit 1 offset 0;
sql select max(c1), min(c2), avg(c3), sum(c5), spread(c6), first(c7), last(c8), first(c9) from lm_stb0 where ts >= '2018-09-17 09:00:00.000' and ts <= '2018-09-17 10:30:00.000' and c1 > 1 and c2 < 9 and c3 > 2 and c4 < 8 and c5 > 3 and c6 < 7 and c7 = 'true' and c8 like '%5' and t1 > 3 and t1 < 6 limit 1 offset 0;
if $rows != 1 then
  return -1
endi
if $data00 != 5 then
  return -1
endi
if $data01 != 5 then
  return -1
endi
if $data02 != 5.000000000 then
  return -1
endi
$val = 5 * $rowNum
$val = $val / 10
if $data03 != $val then
  return -1
endi
if $data04 != 0.000000000 then
  return -1
endi
if $data05 != 1 then
  return -1
endi
if $data06 != binary5 then
  return -1
endi
if $data07 != nchar5 then
  return -1 
endi

sql select c1, tbname, t1 from lm_stb0 where ts >= '2018-09-17 09:00:00.000' and ts <= '2018-09-17 10:30:00.000' and c1 > 1 and c2 < 9 and c3 > 2 and c4 < 8 and c5 > 3 and c6 < 7 and c7 = 'true' and c8 like '%5' and t1 > 3 and t1 < 6;

sql select max(c1), min(c2), avg(c3), sum(c5), spread(c6), first(c7), last(c8), first(c9) from $stb where ts >= $ts0 and ts <= $tsu and t1 > 3 and t1 < 6 limit 10 offset 10
if $rows != 0 then
  return -1
endi

## TBASE-345
sql select max(c1), min(c2), avg(c3), sum(c5), spread(c6), first(c7), last(c8), first(c9) from $stb where ts >= $ts0 and ts <= $tsu and t1 > 1 and t1 < 8 group by t1 order by t1 asc limit 5 offset 1
if $rows != 0 then
  return -1
endi

sql select max(c1), min(c2), avg(c3), sum(c5), spread(c6), first(c7), last(c8), first(c9) from $stb where ts >= $ts0 and ts <= $tsu and t1 > 1 and t1 < 8 group by t1 order by t1 asc limit 5 offset 0
if $rows != 6 then
  return -1
endi
if $data00 != 9 then
  return -1
endi
if $data01 != 0 then
  return -1
endi
if $data02 != 4.500000000 then
  return -1
endi
if $data08 != 2 then
  return -1
endi
if $data18 != 3 then
  return -1
endi
if $data28 != 4 then
  return -1
endi
428
if $data31 != NULL then
S
slguan 已提交
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
  return -1
endi
if $data47 != nchar0 then
  return -1
endi
if $data58 != 7 then
  return -1
endi

sql select max(c1), min(c2), avg(c3), sum(c5), spread(c6), first(c7), last(c8), first(c9) from $stb where ts >= $ts0 and ts <= $tsu and t1 > 1 and t1 < 8 group by t1 order by t1 desc limit 5 offset 1
if $rows != 0 then
  return -1
endi

sql select max(c1), min(c2), avg(c3), sum(c5), spread(c6), first(c7), last(c8), first(c9) from $stb where ts >= $ts0 and ts <= $tsu and t1 > 1 and t1 < 8 group by t1 order by t1 desc limit 5 offset 0
if $rows != 6 then
  return -1
endi
if $data00 != 9 then
  return -1
endi
450
if $data01 != NULL then
S
slguan 已提交
451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651
  return -1
endi
if $data02 != 4.500000000 then
  return -1
endi
if $data32 != 4.500000000 then
  return -1
endi
if $data31 != 0 then
  return -1
endi
if $data47 != nchar0 then
  return -1
endi
if $data08 != 7 then
  return -1
endi
if $data18 != 6 then
  return -1
endi
if $data24 != 9.000000000 then
  return -1
endi
if $data53 != 45 then
  return -1
endi
if $data58 != 2 then
  return -1
endi

### supertable aggregation + where + interval + limit offset
sql select max(c1), min(c2), avg(c3), sum(c5), spread(c6), first(c7), last(c8), first(c9) from $stb where ts >= $ts0 and ts <= $tsu and t1 > 1 and t1 < 8 interval(5m) limit 5 offset 1
if $rows != 5 then
  return -1
endi
if $data00 != @18-09-17 09:10:00.000@ then
  return -1
endi
if $data01 != 1 then
  return -1
endi
if $data40 != @18-09-17 09:50:00.000@ then
  return -1
endi
if $data41 != 5 then
  return -1
endi
$offset = $rowNum / 2
$offset = $offset + 1
sql select max(c1), min(c2), avg(c3), sum(c5), spread(c6), first(c7), last(c8), first(c9) from $stb where ts >= $ts0 and ts <= $tsu and t1 > 1 and t1 < 8 interval(5m) limit $offset offset $offset
$val = $rowNum - $offset
if $rows != $val then
  return -1
endi
if $data00 != @18-09-17 10:00:00.000@ then
  return -1
endi
if $data01 != 6 then
  return -1
endi
if $data30 != @18-09-17 10:30:00.000@ then
  return -1
endi
if $data31 != 9 then
  return -1
endi

### supertable aggregation + where + interval + group by order by tag + limit offset
## TBASE-345
sql select max(c1), min(c2), avg(c3), sum(c5), spread(c6), first(c7), last(c8), first(c9) from $stb where ts >= $ts0 and ts <= $tsu and t1 > 1 and t1 < 5 and c1 > 0 and c2 < 9 and c3 > 1 and c4 < 7 and c5 > 4 interval(5m) group by t1 order by t1 desc limit 3 offset 0
if $rows != 6 then
  return -1
endi
if $data01 != 5 then
  return -1
endi
if $data09 != 4 then
  return -1
endi
if $data11 != 6 then
  return -1
endi
if $data19 != 4 then
  return -1
endi
if $data22 != 5 then
  return -1
endi
if $data29 != 3 then
  return -1
endi
if $data33 != 6.000000000 then
  return -1
endi
if $data39 != 3 then
  return -1
endi
if $data44 != 5 then
  return -1
endi
if $data49 != 2 then
  return -1
endi
if $data58 != nchar6 then
  return -1
endi
if $data59 != 2 then
  return -1
endi

sql select max(c1), min(c2), avg(c3), sum(c5), spread(c6), first(c7), last(c8), first(c9) from $stb where ts >= $ts0 and ts <= $tsu and t1 > 1 and t1 < 5 and c1 > 0 and c2 < 9 and c3 > 1 and c4 < 7 and c5 > 4 interval(5m) group by t1 order by t1 desc limit 3 offset 1
if $rows != 3 then
  return -1
endi
if $data01 != 6 then
  return -1
endi
if $data09 != 4 then
  return -1
endi
if $data13 != 6.000000000 then
  return -1
endi
if $data19 != 3 then
  return -1
endi
if $data28 != nchar6 then
  return -1
endi
if $data29 != 2 then
  return -1
endi

sql select max(c1), min(c2), avg(c3), sum(c5), spread(c6), first(c7), last(c8), first(c9) from $stb where ts >= $ts0 and ts <= $tsu and t1 > 1 and t1 < 5 and c1 > 0 and c2 < 9 and c3 > 1 and c4 < 7 and c5 > 4 interval(5m) group by t1 order by t1 desc limit 1 offset 0
if $rows != 3 then
  return -1
endi
if $data01 != 5 then
  return -1
endi
if $data09 != 4 then
  return -1
endi
if $data13 != 5.000000000 then
  return -1
endi
if $data19 != 3 then
  return -1
endi
if $data28 != nchar5 then
  return -1
endi
if $data29 != 2 then
  return -1
endi

sql select max(c1), min(c2), avg(c3), sum(c5), spread(c6), first(c7), last(c8), first(c9) from $stb where ts >= $ts0 and ts <= $tsu and t1 > 1 and t1 < 8 and c1 > 0 and c2 < 9 and c3 > 4 and c4 < 7 and c5 > 4 interval(5m) group by t1 order by t1 desc limit 3 offset 0
if $rows != 6 then
  return -1
endi
if $data01 != 5 then
  return -1
endi
if $data09 != 4 then
  return -1
endi
if $data19 != 4 then
  return -1
endi
if $data23 != 5.000000000 then
  return -1
endi
if $data29 != 3 then
  return -1
endi
if $data39 != 3 then
  return -1
endi
if $data48 != nchar5 then
  return -1
endi
if $data49 != 2 then
  return -1
endi
if $data59 != 2 then
  return -1
endi

sql select max(c1), min(c1), avg(c1), count(c1), sum(c1), spread(c1), first(c1), last(c1) from $stb where ts >= $ts0 and ts <= $tsu and t1 > 1 and t1 < 8 interval(5m) group by t1 order by t1 desc limit 1 offset 0
if $rows != 6 then
  return -1
endi
if $data01 != 0 then
  return -1
endi
if $data02 != 0 then
  return -1
endi
if $data09 != 7 then
  return -1
endi
652
print $data13
S
slguan 已提交
653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679
if $data13 != 0.000000000 then
  return -1
endi
if $data19 != 6 then
  return -1
endi
if $data24 != 1 then
  return -1
endi
if $data29 != 5 then
  return -1
endi
if $data31 != 0 then
  return -1
endi
if $data32 != 0 then
  return -1
endi
if $data33 != 0.000000000 then
  return -1
endi
if $data34 != 1 then
  return -1
endi
if $data35 != 0 then
  return -1
endi
680 681

print $data36
S
slguan 已提交
682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
if $data36 != 0.000000000 then
  return -1
endi
if $data37 != 0 then
  return -1
endi
if $data38 != 0 then
  return -1
endi
if $data39 != 4 then
  return -1
endi
if $data49 != 3 then
  return -1
endi
if $data59 != 2 then
  return -1
endi

701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743
#sql select max(c2), min(c2), avg(c2), count(c2), sum(c2), spread(c2), first(c2), last(c2) from $stb where ts >= $ts0 and ts <= $tsu and t1 > 3 and t1 < 6 interval(5m) group by t1 order by t1 desc limit 3 offset 1
#if $rows != 3 then
#  return -1
#endi
#if $data00 != @18-09-17 09:20:00.000@ then
#  return -1
#endi
#if $data01 != 2 then
#  return -1
#endi
#if $data02 != 2 then
#  return -1
#endi
#if $data09 != 4 then
#  return -1
#endi
#if $data13 != 3.000000000 then
#  return -1
#endi
#if $data19 != 4 then
#  return -1
#endi
#if $data20 != @18-09-17 09:40:00.000@ then
#  return -1
#endi
#if $data24 != 1 then
#  return -1
#endi
#if $data25 != 4 then
#  return -1
#endi
#if $data26 != 0.000000000 then
#  return -1
#endi
#if $data27 != 4 then
#  return -1
#endi
#if $data28 != 4 then
#  return -1
#endi
#if $data29 != 4 then
#  return -1
#endi
S
slguan 已提交
744 745 746 747 748 749 750 751

sql select max(c2), min(c2), avg(c2), count(c2), spread(c2), first(c2), last(c2), count(ts) from $stb where ts >= $ts0 and ts <= $tsu and t1 > 3 and t1 < 6 interval(5m) group by t1 order by t1 desc limit 3 offset 1
if $rows != 6 then
  return -1
endi
if $data00 != @18-09-17 09:10:00.000@ then
  return -1
endi
752
if $data01 != NULL then
S
slguan 已提交
753 754
  return -1
endi
755
if $data02 != NULL then
S
slguan 已提交
756 757 758 759 760
  return -1
endi
if $data09 != 5 then
  return -1
endi
761
if $data13 != NULL then
S
slguan 已提交
762 763 764 765 766 767 768 769 770 771 772
  return -1
endi
if $data19 != 5 then
  return -1
endi
if $data20 != @18-09-17 09:30:00.000@ then
  return -1
endi
if $data24 != 0 then
  return -1
endi
773
if $data25 != NULL then
S
slguan 已提交
774 775
  return -1
endi
776
if $data26 != NULL then
S
slguan 已提交
777 778
  return -1
endi
779
if $data27 != NULL then
S
slguan 已提交
780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855
  return -1
endi
if $data28 != 1 then
  return -1
endi
if $data29 != 5 then
  return -1
endi
if $data30 != @18-09-17 09:10:00.000@ then
  return -1
endi
if $data31 != 1 then
  return -1
endi
if $data32 != 1 then
  return -1
endi
if $data33 != 1.000000000 then
  return -1
endi
if $data34 != 1 then
  return -1
endi
if $data35 != 0.000000000 then
  return -1
endi
if $data36 != 1 then
  return -1
endi
if $data37 != 1 then
  return -1
endi
if $data38 != 1 then
  return -1
endi
if $data39 != 4 then
  return -1
endi
if $data41 != 2 then
  return -1
endi
if $data49 != 4 then
  return -1
endi
if $data51 != 3 then
  return -1
endi
if $data59 != 4 then
  return -1
endi

sql select top(c1, 1) from $stb where ts >= $ts0 and ts <= $tsu limit 5 offset 1
if $rows != 0 then
  return -1
endi

sql select top(c1, 5) from $stb where ts >= $ts0 and ts <= $tsu order by ts desc limit 3 offset 1
if $rows != 3 then
  return -1
endi
if $data01 != 9 then
  return -1
endi

sql select top(c1, 5) from $stb where ts >= $ts0 and ts <= $tsu order by ts asc limit 3 offset 1
if $rows != 3 then
  return -1
endi
if $data01 != 9 then
  return -1
endi

sql select top(c1, 5) from $stb where ts >= $ts0 and ts <= $tsu group by t1 order by t1 desc slimit 2 soffset 1 limit 3 offset 1
if $rows != 6 then
  return -1
endi
H
Haojun Liao 已提交
856
if $data00 != @18-09-17 10:00:00.008@ then
S
slguan 已提交
857 858 859 860 861 862 863 864
  return -1
endi
if $data01 != 6 then
  return -1
endi
if $data02 != 8 then
  return -1
endi
H
Haojun Liao 已提交
865
if $data10 != @18-09-17 10:10:00.008@ then
S
slguan 已提交
866 867 868 869 870 871 872 873
  return -1
endi
if $data11 != 7 then
  return -1
endi
if $data12 != 8 then
  return -1
endi
H
Haojun Liao 已提交
874
if $data20 != @18-09-17 10:20:00.008@ then
S
slguan 已提交
875 876 877 878 879 880 881 882
  return -1
endi
if $data21 != 8 then
  return -1
endi
if $data22 != 8 then
  return -1
endi
H
Haojun Liao 已提交
883
if $data30 != @18-09-17 10:00:00.007@ then
S
slguan 已提交
884 885 886 887 888 889 890 891
  return -1
endi
if $data31 != 6 then
  return -1
endi
if $data32 != 7 then
  return -1
endi
H
Haojun Liao 已提交
892
if $data40 != @18-09-17 10:10:00.007@ then
S
slguan 已提交
893 894 895 896 897 898 899 900
  return -1
endi
if $data41 != 7 then
  return -1
endi
if $data42 != 7 then
  return -1
endi
H
Haojun Liao 已提交
901
if $data50 != @18-09-17 10:20:00.007@ then
S
slguan 已提交
902 903 904 905 906 907 908 909 910 911 912 913 914
  return -1
endi
if $data51 != 8 then
  return -1
endi
if $data52 != 7 then
  return -1
endi

sql select top(c1, 5) from $stb where ts >= $ts0 and ts <= $tsu group by t1 order by t1 asc slimit 2 soffset 1 limit 3 offset 1
if $rows != 6 then
  return -1
endi
H
Haojun Liao 已提交
915
if $data00 != @18-09-17 10:00:00.001@ then
S
slguan 已提交
916 917 918 919 920 921 922 923
  return -1
endi
if $data01 != 6 then
  return -1
endi
if $data02 != 1 then
  return -1
endi
H
Haojun Liao 已提交
924
if $data10 != @18-09-17 10:10:00.001@ then
S
slguan 已提交
925 926 927 928 929 930 931 932
  return -1
endi
if $data11 != 7 then
  return -1
endi
if $data12 != 1 then
  return -1
endi
H
Haojun Liao 已提交
933
if $data20 != @18-09-17 10:20:00.001@ then
S
slguan 已提交
934 935 936 937 938 939 940 941
  return -1
endi
if $data21 != 8 then
  return -1
endi
if $data22 != 1 then
  return -1
endi
H
Haojun Liao 已提交
942
if $data30 != @18-09-17 10:00:00.002@ then
S
slguan 已提交
943 944 945 946 947 948 949 950
  return -1
endi
if $data31 != 6 then
  return -1
endi
if $data32 != 2 then
  return -1
endi
H
Haojun Liao 已提交
951
if $data40 != @18-09-17 10:10:00.002@ then
S
slguan 已提交
952 953 954 955 956 957 958 959
  return -1
endi
if $data41 != 7 then
  return -1
endi
if $data42 != 2 then
  return -1
endi
H
Haojun Liao 已提交
960
if $data50 != @18-09-17 10:20:00.002@ then
S
slguan 已提交
961 962 963 964 965 966 967 968 969 970 971 972 973
  return -1
endi
if $data51 != 8 then
  return -1
endi
if $data52 != 2 then
  return -1
endi

sql select top(c1, 5) from $stb where ts >= $ts0 and ts <= $tsu group by t1 order by ts desc slimit 2 soffset 1 limit 3 offset 1
if $rows != 6 then
  return -1
endi
H
Haojun Liao 已提交
974
if $data00 != @18-09-17 10:20:00.001@ then
S
slguan 已提交
975 976 977 978 979 980 981 982
  return -1
endi
if $data01 != 8 then
  return -1
endi
if $data02 != 1 then
  return -1
endi
H
Haojun Liao 已提交
983
if $data10 != @18-09-17 10:10:00.001@ then
S
slguan 已提交
984 985 986 987 988 989 990 991
  return -1
endi
if $data11 != 7 then
  return -1
endi
if $data12 != 1 then
  return -1
endi
H
Haojun Liao 已提交
992
if $data20 != @18-09-17 10:00:00.001@ then
S
slguan 已提交
993 994 995 996 997 998 999 1000
  return -1
endi
if $data21 != 6 then
  return -1
endi
if $data22 != 1 then
  return -1
endi
H
Haojun Liao 已提交
1001
if $data30 != @18-09-17 10:20:00.002@ then
S
slguan 已提交
1002 1003 1004 1005 1006 1007 1008 1009
  return -1
endi
if $data31 != 8 then
  return -1
endi
if $data32 != 2 then
  return -1
endi
H
Haojun Liao 已提交
1010
if $data40 != @18-09-17 10:10:00.002@ then
S
slguan 已提交
1011 1012 1013 1014 1015 1016 1017 1018
  return -1
endi
if $data41 != 7 then
  return -1
endi
if $data42 != 2 then
  return -1
endi
H
Haojun Liao 已提交
1019
if $data50 != @18-09-17 10:00:00.002@ then
S
slguan 已提交
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043
  return -1
endi
if $data51 != 6 then
  return -1
endi
if $data52 != 2 then
  return -1
endi

sql select top(c1, 5) from $stb where ts >= $ts0 and ts <= $tsu order by ts asc limit 3 offset 5
if $rows != 0 then
  return -1
endi
sql_error select top(c1, 101) from $stb where ts >= $ts0 and ts <= $tsu order by ts asc limit 3 offset 98

sql select bottom(c1, 1) from $stb where ts >= $ts0 and ts <= $tsu limit 5 offset 1
if $rows != 0 then
  return -1
endi

sql select bottom(c1, 5) from $stb where ts >= $ts0 and ts <= $tsu order by ts desc limit 3 offset 1
if $rows != 3 then
  return -1
endi
H
Haojun Liao 已提交
1044 1045 1046
#if $data00 != @18-09-17 09:00:00.000@ then
#  return -1
#endi
S
slguan 已提交
1047 1048 1049 1050 1051 1052 1053 1054
if $data01 != 0 then
  return -1
endi

sql select bottom(c1, 5) from $stb where ts >= $ts0 and ts <= $tsu order by ts asc limit 3 offset 1
if $rows != 3 then
  return -1
endi
H
Haojun Liao 已提交
1055 1056 1057
#if $data00 != @18-09-17 09:00:00.000@ then
#  return -1
#endi
S
slguan 已提交
1058 1059 1060 1061 1062 1063 1064 1065
if $data01 != 0 then
  return -1
endi

sql select bottom(c1, 5) from $stb where ts >= $ts0 and ts <= $tsu group by t1 order by t1 desc,ts desc slimit 2 soffset 1 limit 3 offset 1
if $rows != 6 then
  return -1
endi
H
Haojun Liao 已提交
1066 1067 1068
#if $data00 != @18-09-17 09:30:00.000@ then
#  return -1
#endi
S
slguan 已提交
1069 1070 1071 1072 1073 1074
if $data01 != 3 then
  return -1
endi
if $data02 != 8 then
  return -1
endi
H
Haojun Liao 已提交
1075 1076 1077
#if $data10 != @18-09-17 09:20:00.000@ then
#  return -1
#endi
S
slguan 已提交
1078 1079 1080 1081 1082 1083
if $data11 != 2 then
  return -1
endi
if $data12 != 8 then
  return -1
endi
H
Haojun Liao 已提交
1084 1085 1086
#if $data20 != @18-09-17 09:10:00.000@ then
#  return -1
#endi
S
slguan 已提交
1087 1088 1089 1090 1091 1092
if $data21 != 1 then
  return -1
endi
if $data22 != 8 then
  return -1
endi
H
Haojun Liao 已提交
1093 1094 1095
#if $data30 != @18-09-17 09:30:00.000@ then
#  return -1
#endi
S
slguan 已提交
1096 1097 1098 1099 1100 1101
if $data31 != 3 then
  return -1
endi
if $data32 != 7 then
  return -1
endi
H
Haojun Liao 已提交
1102 1103 1104
#if $data40 != @18-09-17 09:20:00.000@ then
#  return -1
#endi
S
slguan 已提交
1105 1106 1107 1108 1109 1110
if $data41 != 2 then
  return -1
endi
if $data42 != 7 then
  return -1
endi
H
Haojun Liao 已提交
1111 1112 1113
#if $data50 != @18-09-17 09:10:00.000@ then
#  return -1
#endi
S
slguan 已提交
1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124
if $data51 != 1 then
  return -1
endi
if $data52 != 7 then
  return -1
endi

sql select bottom(c1, 5) from $stb where ts >= $ts0 and ts <= $tsu group by t1 order by t1 asc,ts desc slimit 2 soffset 1 limit 3 offset 1
if $rows != 6 then
  return -1
endi
H
Haojun Liao 已提交
1125 1126 1127
#if $data00 != @18-09-17 09:30:00.000@ then
#  return -1
#endi
S
slguan 已提交
1128 1129 1130 1131 1132 1133
if $data01 != 3 then
  return -1
endi
if $data02 != 1 then
  return -1
endi
H
Haojun Liao 已提交
1134 1135 1136
#if $data10 != @18-09-17 09:20:00.000@ then
#  return -1
#endi
S
slguan 已提交
1137 1138 1139 1140 1141 1142
if $data11 != 2 then
  return -1
endi
if $data12 != 1 then
  return -1
endi
H
Haojun Liao 已提交
1143 1144 1145
#if $data20 != @18-09-17 09:10:00.000@ then
#  return -1
#endi
S
slguan 已提交
1146 1147 1148 1149 1150 1151
if $data21 != 1 then
  return -1
endi
if $data22 != 1 then
  return -1
endi
H
Haojun Liao 已提交
1152 1153 1154
#if $data30 != @18-09-17 09:30:00.000@ then
#  return -1
#endi
S
slguan 已提交
1155 1156 1157 1158 1159 1160
if $data31 != 3 then
  return -1
endi
if $data32 != 2 then
  return -1
endi
H
Haojun Liao 已提交
1161 1162 1163
#if $data40 != @18-09-17 09:20:00.000@ then
#  return -1
#endi
S
slguan 已提交
1164 1165 1166 1167 1168 1169
if $data41 != 2 then
  return -1
endi
if $data42 != 2 then
  return -1
endi
H
Haojun Liao 已提交
1170 1171 1172
#if $data50 != @18-09-17 09:10:00.000@ then
#  return -1
#endi
S
slguan 已提交
1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183
if $data51 != 1 then
  return -1
endi
if $data52 != 2 then
  return -1
endi

sql select bottom(c1, 5) from $stb where ts >= $ts0 and ts <= $tsu group by t1 order by ts desc slimit 2 soffset 1 limit 3 offset 1
if $rows != 6 then
  return -1
endi
H
Haojun Liao 已提交
1184 1185 1186
#if $data00 != @18-09-17 09:30:00.000@ then
#  return -1
#endi
S
slguan 已提交
1187 1188 1189 1190 1191 1192
if $data01 != 3 then
  return -1
endi
if $data02 != 1 then
  return -1
endi
H
Haojun Liao 已提交
1193 1194 1195
#if $data10 != @18-09-17 09:20:00.000@ then
#  return -1
#endi
S
slguan 已提交
1196 1197 1198 1199 1200 1201
if $data11 != 2 then
  return -1
endi
if $data12 != 1 then
  return -1
endi
H
Haojun Liao 已提交
1202 1203 1204
#if $data20 != @18-09-17 09:10:00.000@ then
#  return -1
#endi
S
slguan 已提交
1205 1206 1207 1208 1209 1210
if $data21 != 1 then
  return -1
endi
if $data22 != 1 then
  return -1
endi
H
Haojun Liao 已提交
1211 1212 1213
#if $data30 != @18-09-17 09:30:00.000@ then
#  return -1
#endi
S
slguan 已提交
1214 1215 1216 1217 1218 1219
if $data31 != 3 then
  return -1
endi
if $data32 != 2 then
  return -1
endi
H
Haojun Liao 已提交
1220 1221 1222
#if $data40 != @18-09-17 09:20:00.000@ then
#  return -1
#endi
S
slguan 已提交
1223 1224 1225 1226 1227 1228
if $data41 != 2 then
  return -1
endi
if $data42 != 2 then
  return -1
endi
H
Haojun Liao 已提交
1229 1230 1231
#if $data50 != @18-09-17 09:10:00.000@ then
#  return -1
#endi
S
slguan 已提交
1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252
if $data51 != 1 then
  return -1
endi
if $data52 != 2 then
  return -1
endi

sql select bottom(c1, 5) from $stb where ts >= $ts0 and ts <= $tsu order by ts asc limit 3 offset 5
if $rows != 0 then
  return -1
endi
sql_error select bottom(c1, 101) from $stb where ts >= $ts0 and ts <= $tsu order by ts asc limit 3 offset 98

sql select bottom(c1, 1) from $stb where ts >= $ts0 and ts <= $tsu limit 5 offset 1
if $rows != 0 then
  return -1
endi
sql select bottom(c1, 5) from $stb where ts >= $ts0 and ts <= $tsu limit 3 offset 5
if $rows != 0 then
  return -1
endi