state0.sim 15.4 KB
Newer Older
5
54liuyao 已提交
1 2 3 4 5 6 7
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
system sh/exec.sh -n dnode1 -s start
sleep 50
sql connect

print =============== create database
5
54liuyao 已提交
8 9
sql create database test vgroups 1;
sql select * from information_schema.ins_databases;
5
54liuyao 已提交
10 11 12 13 14 15
if $rows != 3 then
  return -1
endi

print $data00 $data01 $data02

5
54liuyao 已提交
16
sql use test;
5
54liuyao 已提交
17 18

sql create table t1(ts timestamp, a int, b int , c int, d double, id int);
5
54liuyao 已提交
19 20 21

print create stream streams1 trigger at_once  into streamt1 as select  _wstart, count(*) c1, count(d) c2 , sum(a) c3 , max(a)  c4, min(c) c5, max(id) c from t1 state_window(a);

22
sql create stream streams1 trigger at_once  into streamt1 as select  _wstart, count(*) c1, count(d) c2 , sum(a) c3 , max(a)  c4, min(c) c5, max(id) c from t1 state_window(a);
5
54liuyao 已提交
23 24 25

sql insert into t1 values(1648791213000,1,2,3,1.0,1);
sql insert into t1 values(1648791213000,1,2,3,1.0,2);
5
54liuyao 已提交
26 27
$loop_count = 0
loop0:
5
54liuyao 已提交
28 29
sql select * from streamt1 order by c desc;
sleep 300
5
54liuyao 已提交
30 31 32 33
$loop_count = $loop_count + 1
if $loop_count == 10 then
  return -1
endi
5
54liuyao 已提交
34 35

if $rows != 1 then
5
54liuyao 已提交
36 37
  print =====rows=$rows
  goto loop0
5
54liuyao 已提交
38 39 40
endi

sql insert into t1 values(1648791214000,1,2,3,1.0,3);
5
54liuyao 已提交
41 42
$loop_count = 0
loop00:
5
54liuyao 已提交
43 44
sql select * from streamt1 order by c desc;
sleep 300
5
54liuyao 已提交
45 46 47 48
$loop_count = $loop_count + 1
if $loop_count == 10 then
  return -1
endi
5
54liuyao 已提交
49 50

if $rows != 1 then
5
54liuyao 已提交
51 52
  print =====rows=$rows
  goto loop00
5
54liuyao 已提交
53 54 55 56 57 58 59
endi

sql insert into t1 values(1648791213010,2,2,3,1.0,4);
sql insert into t1 values(1648791213000,1,2,3,1.0,5);
sql insert into t1 values(1648791214000,1,2,3,1.0,6);
$loop_count = 0
loop1:
60
sql select * from streamt1 where c >=4 order by `_wstart`;
5
54liuyao 已提交
61 62 63 64 65 66 67
sleep 300
$loop_count = $loop_count + 1
if $loop_count == 10 then
  return -1
endi

if $rows != 3 then
5
54liuyao 已提交
68
  print =====rows=$rows
5
54liuyao 已提交
69 70 71 72 73
  goto loop1
endi

# row 0
if $data01 != 1 then
5
54liuyao 已提交
74 75
  print =====data01=$data01
  goto loop1
5
54liuyao 已提交
76 77 78
endi

if $data02 != 1 then
5
54liuyao 已提交
79 80
  print =====data02=$data02
  goto loop1
5
54liuyao 已提交
81 82 83 84
endi

if $data03 != 1 then
  print ======$data03
5
54liuyao 已提交
85
  goto loop1
5
54liuyao 已提交
86 87 88 89
endi

if $data04 != 1 then
  print ======$data04
5
54liuyao 已提交
90
  goto loop1
5
54liuyao 已提交
91 92 93 94
endi

if $data05 != 3 then
  print ======$data05
5
54liuyao 已提交
95
  goto loop1
5
54liuyao 已提交
96 97 98 99
endi

if $data06 != 5 then
  print ======$data06
5
54liuyao 已提交
100
  goto loop1
5
54liuyao 已提交
101 102 103 104 105
endi

# row 1
if $data11 != 1 then
  print ======$data11
5
54liuyao 已提交
106
  goto loop1
5
54liuyao 已提交
107 108 109 110
endi

if $data12 != 1 then
  print ======$data12
5
54liuyao 已提交
111
  goto loop1
5
54liuyao 已提交
112 113 114 115
endi

if $data13 != 2 then
  print ======$data13
5
54liuyao 已提交
116
  goto loop1
5
54liuyao 已提交
117 118 119 120
endi

if $data14 != 2 then
  print ======$data14
5
54liuyao 已提交
121
  goto loop1
5
54liuyao 已提交
122 123 124 125
endi

if $data15 != 3 then
  print ======$data15
5
54liuyao 已提交
126
  goto loop1
5
54liuyao 已提交
127 128 129 130
endi

if $data16 != 4 then
  print ======$data16
5
54liuyao 已提交
131
  goto loop1
5
54liuyao 已提交
132 133 134 135 136
endi

# row 2
if $data21 != 1 then
  print ======$data21
5
54liuyao 已提交
137
  goto loop1
5
54liuyao 已提交
138 139 140 141
endi

if $data22 != 1 then
  print ======$data22
5
54liuyao 已提交
142
  goto loop1
5
54liuyao 已提交
143 144 145 146
endi

if $data23 != 1 then
  print ======$data23
5
54liuyao 已提交
147
  goto loop1
5
54liuyao 已提交
148 149 150 151
endi

if $data24 != 1 then
  print ======$data24
5
54liuyao 已提交
152
  goto loop1
5
54liuyao 已提交
153 154 155 156
endi

if $data25 != 3 then
  print ======$data25
5
54liuyao 已提交
157
  goto loop1
5
54liuyao 已提交
158 159 160 161
endi

if $data26 != 6 then
  print ======$data26
5
54liuyao 已提交
162
  goto loop1
5
54liuyao 已提交
163 164
endi

5
54liuyao 已提交
165 166
print loop1 end

5
54liuyao 已提交
167 168 169
sql insert into t1 values(1648791213011,1,2,3,1.0,7);

$loop_count = 0
5
54liuyao 已提交
170
loop2:
171
sql select * from streamt1 where c in (5,4,7) order by `_wstart`;
5
54liuyao 已提交
172 173 174 175 176 177 178 179
sleep 300
$loop_count = $loop_count + 1
if $loop_count == 10 then
  return -1
endi

# row 2
if $data21 != 2 then
5
54liuyao 已提交
180
  print =====data21=$data21
5
54liuyao 已提交
181 182 183 184
  goto loop2
endi

if $data22 != 2 then
5
54liuyao 已提交
185
  print =====data22=$data22
5
54liuyao 已提交
186 187 188 189 190
  goto loop2
endi

if $data23 != 2 then
  print ======$data23
5
54liuyao 已提交
191
  goto loop2
5
54liuyao 已提交
192 193 194 195
endi

if $data24 != 1 then
  print ======$data24
5
54liuyao 已提交
196
  goto loop2
5
54liuyao 已提交
197 198 199 200
endi

if $data25 != 3 then
  print ======$data25
5
54liuyao 已提交
201
  goto loop2
5
54liuyao 已提交
202 203 204 205
endi

if $data26 != 7 then
  print ======$data26
5
54liuyao 已提交
206
  goto loop2
5
54liuyao 已提交
207 208 209 210 211
endi

sql insert into t1 values(1648791213011,1,2,3,1.0,8);

$loop_count = 0
5
54liuyao 已提交
212
loop21:
213
sql select * from streamt1 where c in (5,4,8) order by `_wstart`;
5
54liuyao 已提交
214 215 216 217 218 219 220
sleep 300
$loop_count = $loop_count + 1
if $loop_count == 10 then
  return -1
endi

if $data26 != 8 then
5
54liuyao 已提交
221
  print =====data26=$data26
5
54liuyao 已提交
222 223 224 225 226 227 228 229 230 231
  goto loop21
endi


sql insert into t1 values(1648791213020,1,2,3,1.0,9);
sql insert into t1 values(1648791213020,3,2,3,1.0,10);
sql insert into t1 values(1648791214000,1,2,3,1.0,11);
sql insert into t1 values(1648791213011,10,20,10,10.0,12);

$loop_count = 0
5
54liuyao 已提交
232
loop3:
233
sql select * from streamt1 where c in (5,4,10,11,12) order by `_wstart`;
5
54liuyao 已提交
234 235 236 237 238 239 240 241
sleep 300
$loop_count = $loop_count + 1
if $loop_count == 10 then
  return -1
endi

# row 2
if $data21 != 1 then
5
54liuyao 已提交
242
  print =====data21=$data21
5
54liuyao 已提交
243 244 245 246
  goto loop3
endi

if $data22 != 1 then
5
54liuyao 已提交
247
  print =====data22=$data22
5
54liuyao 已提交
248 249 250 251 252
  goto loop3
endi

if $data23 != 10 then
  print ======$data23
5
54liuyao 已提交
253
  goto loop3
5
54liuyao 已提交
254 255 256 257
endi

if $data24 != 10 then
  print ======$data24
5
54liuyao 已提交
258
  goto loop3
5
54liuyao 已提交
259 260 261 262
endi

if $data25 != 10 then
  print ======$data25
5
54liuyao 已提交
263
  goto loop3
5
54liuyao 已提交
264 265 266 267
endi

if $data26 != 12 then
  print ======$data26
5
54liuyao 已提交
268
  goto loop3
5
54liuyao 已提交
269 270 271 272
endi

# row 3
if $data31 != 1 then
5
54liuyao 已提交
273
  print =====data31=$data31
5
54liuyao 已提交
274 275 276 277
  goto loop3
endi

if $data32 != 1 then
5
54liuyao 已提交
278
  print =====data32=$data32
5
54liuyao 已提交
279 280 281 282 283
  goto loop3
endi

if $data33 != 3 then
  print ======$data33
5
54liuyao 已提交
284
  goto loop3
5
54liuyao 已提交
285 286 287 288
endi

if $data34 != 3 then
  print ======$data34
5
54liuyao 已提交
289
  goto loop3
5
54liuyao 已提交
290 291 292 293
endi

if $data35 != 3 then
  print ======$data35
5
54liuyao 已提交
294
  goto loop3
5
54liuyao 已提交
295 296 297 298
endi

if $data36 != 10 then
  print ======$data36
5
54liuyao 已提交
299
  goto loop3
5
54liuyao 已提交
300 301 302 303
endi

# row 4
if $data41 != 1 then
5
54liuyao 已提交
304
  print =====data41=$data41
5
54liuyao 已提交
305 306 307 308
  goto loop3
endi

if $data42 != 1 then
5
54liuyao 已提交
309
  print =====data42=$data42
5
54liuyao 已提交
310 311 312 313 314
  goto loop3
endi

if $data43 != 1 then
  print ======$data43
5
54liuyao 已提交
315
  goto loop3
5
54liuyao 已提交
316 317 318 319
endi

if $data44 != 1 then
  print ======$data44
5
54liuyao 已提交
320
  goto loop3
5
54liuyao 已提交
321 322 323 324
endi

if $data45 != 3 then
  print ======$data45
5
54liuyao 已提交
325
  goto loop3
5
54liuyao 已提交
326 327 328 329
endi

if $data46 != 11 then
  print ======$data46
5
54liuyao 已提交
330
  goto loop3
5
54liuyao 已提交
331 332 333 334 335 336 337
endi

sql insert into t1 values(1648791213030,3,12,12,12.0,13);
sql insert into t1 values(1648791214040,1,13,13,13.0,14);
sql insert into t1 values(1648791213030,3,14,14,14.0,15) (1648791214020,15,15,15,15.0,16);

$loop_count = 0
5
54liuyao 已提交
338
loop4:
339
sql select * from streamt1 where c in (14,15,16) order by `_wstart`;
5
54liuyao 已提交
340 341 342 343 344 345 346 347
sleep 300

$loop_count = $loop_count + 1
if $loop_count == 10 then
  return -1
endi

if $rows != 3 then
5
54liuyao 已提交
348
  print ====loop4=rows=$rows
5
54liuyao 已提交
349
  goto loop4
5
54liuyao 已提交
350 351 352 353
endi

# row 0
if $data01 != 2 then
5
54liuyao 已提交
354
  print =====data01=$data01
5
54liuyao 已提交
355 356 357 358 359
  goto loop4
endi

if $data02 != 2 then
  print ======$data02
5
54liuyao 已提交
360
  goto loop4
5
54liuyao 已提交
361 362 363 364
endi

if $data03 != 6 then
  print ======$data03
5
54liuyao 已提交
365
  goto loop4
5
54liuyao 已提交
366 367 368 369
endi

if $data04 != 3 then
  print ======$data04
5
54liuyao 已提交
370
  goto loop4
5
54liuyao 已提交
371 372 373 374
endi

if $data05 != 3 then
  print ======$data05
5
54liuyao 已提交
375
  goto loop4
5
54liuyao 已提交
376 377 378 379
endi

if $data06 != 15 then
  print ======$data06
5
54liuyao 已提交
380
  goto loop4
5
54liuyao 已提交
381 382 383 384
endi

# row 1
if $data11 != 1 then
5
54liuyao 已提交
385
  print =====data11=$data11
5
54liuyao 已提交
386 387 388 389
  goto loop4
endi

if $data12 != 1 then
5
54liuyao 已提交
390
  print =====data12=$data12
5
54liuyao 已提交
391 392 393 394 395
  goto loop4
endi

if $data13 != 15 then
  print ======$data13
5
54liuyao 已提交
396
  goto loop4
5
54liuyao 已提交
397 398 399 400
endi

if $data14 != 15 then
  print ======$data14
5
54liuyao 已提交
401
  goto loop4
5
54liuyao 已提交
402 403 404 405
endi

if $data15 != 15 then
  print ======$data15
5
54liuyao 已提交
406
  goto loop4
5
54liuyao 已提交
407 408 409 410
endi

if $data16 != 16 then
  print ======$data16
5
54liuyao 已提交
411
  goto loop4
5
54liuyao 已提交
412 413 414 415
endi

# row 2
if $data21 != 1 then
5
54liuyao 已提交
416
  print =====data21=$data21
5
54liuyao 已提交
417 418 419 420
  goto loop4
endi

if $data22 != 1 then
5
54liuyao 已提交
421
  print =====data22=$data22
5
54liuyao 已提交
422 423 424 425 426
  goto loop4
endi

if $data23 != 1 then
  print ======$data23
5
54liuyao 已提交
427
  goto loop4
5
54liuyao 已提交
428 429 430 431
endi

if $data24 != 1 then
  print ======$data24
5
54liuyao 已提交
432
  goto loop4
5
54liuyao 已提交
433 434 435 436
endi

if $data25 != 13 then
  print ======$data25
5
54liuyao 已提交
437
  goto loop4
5
54liuyao 已提交
438 439 440 441
endi

if $data26 != 14 then
  print ======$data26
5
54liuyao 已提交
442
  goto loop4
5
54liuyao 已提交
443 444
endi

5
54liuyao 已提交
445 446
print loop4 end

5
54liuyao 已提交
447 448
sql create database test1 vgroups 1;
sql select * from information_schema.ins_databases;
5
54liuyao 已提交
449 450 451

print $data00 $data01 $data02

5
54liuyao 已提交
452
sql use test1;
5
54liuyao 已提交
453 454

sql create table t1(ts timestamp, a int, b int , c int, d double, id int);
5
54liuyao 已提交
455 456 457

print create stream streams2 trigger at_once  into streamt1 as select  _wstart, count(*) c1, count(d) c2 , sum(a) c3 , max(a)  c4, min(c) c5, max(id) c from t1 state_window(a);

458
sql create stream streams2 trigger at_once  into streamt1 as select  _wstart, count(*) c1, count(d) c2 , sum(a) c3 , max(a)  c4, min(c) c5, max(id) c from t1 state_window(a);
5
54liuyao 已提交
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

sql insert into t1 values(1648791212000,2,2,3,1.0,1);
sql insert into t1 values(1648791213000,1,2,3,1.0,1);
sql insert into t1 values(1648791213000,1,2,4,1.0,2);
$loop_count = 0
loop5:

sleep 300
sql select * from streamt1 order by c desc;

$loop_count = $loop_count + 1
if $loop_count == 10 then
  return -1
endi

if $rows != 2 then
  print =====rows=$rows
  goto loop5
endi

if $data01 != 1 then
  print =====data01=$data01
  goto loop5
endi

if $data05 != 4 then
  print =====data05=$data05
  goto loop5
endi

if $data11 != 1 then
  print =====data11=$data11
  goto loop5
endi

if $data15 != 3 then
  print =====data15=$data15
  goto loop5
endi

5
54liuyao 已提交
499 500 501 502
sql create database test3 vgroups 1;
sql use test3;

sql create table t1(ts timestamp, a int, b int , c int, d double, id int);
5
54liuyao 已提交
503 504 505

print create stream streams3 trigger at_once  into streamt3 as select  _wstart, count(*) c1, sum(b) c3 from t1 state_window(a);

5
54liuyao 已提交
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
sql create stream streams3 trigger at_once  into streamt3 as select  _wstart, count(*) c1, sum(b) c3 from t1 state_window(a);
sql insert into t1 values(1648791212000,1,2,3,1.0,1);
sql insert into t1 values(1648791213000,2,2,3,1.0,1);
sql insert into t1 values(1648791214000,3,2,4,1.0,2);
sql insert into t1 values(1648791215000,4,2,3,1.0,1);
sql insert into t1 values(1648791211000,5,2,3,1.0,1);
sql insert into t1 values(1648791210000,6,2,4,1.0,2);
sql insert into t1 values(1648791217000,7,2,3,1.0,1);
sql insert into t1 values(1648791219000,8,2,3,1.0,1);
sql insert into t1 values(1648791209000,9,2,4,1.0,2);
sql insert into t1 values(1648791220000,10,2,4,1.0,2);

sql insert into t1 values(1648791212000,1,2,3,1.0,1);
sql insert into t1 values(1648791213000,2,2,3,1.0,1);
sql insert into t1 values(1648791214000,3,2,4,1.0,2);
sql insert into t1 values(1648791215000,4,2,3,1.0,1);
sql insert into t1 values(1648791211000,5,2,3,1.0,1);
sql insert into t1 values(1648791210000,6,2,4,1.0,2);
sql insert into t1 values(1648791217000,7,2,3,1.0,1);
sql insert into t1 values(1648791219000,8,2,3,1.0,1);
sql insert into t1 values(1648791209000,9,2,4,1.0,2);
sql insert into t1 values(1648791220000,10,2,4,1.0,2);


$loop_count = 0
loop6:

sleep 300

sql select * from streamt3;

$loop_count = $loop_count + 1
if $loop_count == 10 then
  return -1
endi

if $rows != 10 then
  print =====rows=$rows
  goto loop6
endi

5
54liuyao 已提交
547 548 549 550 551 552 553 554
sql drop stream if exists streams4;
sql drop database if exists test4;
sql drop stable if exists streamt4;
sql create database if not exists test4 vgroups 10 precision "ms" ;
sql use test4;
sql create table st (ts timestamp, c1 tinyint, c2 smallint) tags (t1 tinyint) ;
sql create table t1 using st tags (-81) ;
sql create table t2 using st tags (-81) ;
5
54liuyao 已提交
555 556 557

print create stream if not exists streams4 trigger window_close into streamt4 as select _wstart AS startts, min(c1),count(c1) from t1 state_window(c1);

X
Xiaoyu Wang 已提交
558
sql create stream if not exists streams4 trigger window_close into streamt4 as select _wstart AS startts, min(c1),count(c1) from t1 state_window(c1);
5
54liuyao 已提交
559 560 561 562 563 564 565 566 567 568 569 570 571 572

sql insert into t1 (ts, c1) values (1668073288209, 11);
sql insert into t1 (ts, c1) values (1668073288210, 11);
sql insert into t1 (ts, c1) values (1668073288211, 11);
sql insert into t1 (ts, c1) values (1668073288212, 11);
sql insert into t1 (ts, c1) values (1668073288213, 11);
sql insert into t1 (ts, c1) values (1668073288214, 11);
sql insert into t1 (ts, c1) values (1668073288215, 29);

$loop_count = 0
loop7:

sleep 200

X
Xiaoyu Wang 已提交
573
sql select * from streamt4 order by startts;
5
54liuyao 已提交
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

$loop_count = $loop_count + 1
if $loop_count == 20 then
  return -1
endi

if $rows != 1 then
  print =====rows=$rows
  goto loop7
endi

if $data01 != 11 then
  print =====data01=$data01
  goto loop7
endi

if $data02 != 6 then
  print =====data02=$data02
  goto loop7
endi

sql delete from t1 where ts = cast(1668073288214 as timestamp);
sql insert into t1 (ts, c1) values (1668073288216, 29);
sql delete from t1 where ts = cast(1668073288215 as timestamp);
sql insert into t1 (ts, c1) values (1668073288217, 29);
sql delete from t1 where ts = cast(1668073288216 as timestamp);
sql insert into t1 (ts, c1) values (1668073288218, 29);
sql delete from t1 where ts = cast(1668073288217 as timestamp);
sql insert into t1 (ts, c1) values (1668073288219, 29);
sql delete from t1 where ts = cast(1668073288218 as timestamp);
sql insert into t1 (ts, c1) values (1668073288220, 29);
sql delete from t1 where ts = cast(1668073288219 as timestamp);

$loop_count = 0
loop8:

sleep 200

X
Xiaoyu Wang 已提交
612
sql select * from streamt4 order by startts;
5
54liuyao 已提交
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

$loop_count = $loop_count + 1
if $loop_count == 20 then
  return -1
endi

if $rows != 1 then
  print =====rows=$rows
  goto loop8
endi

if $data01 != 11 then
  print =====data01=$data01
  goto loop8
endi

if $data02 != 5 then
  print =====data02=$data02
  goto loop8
endi

sql insert into t1 (ts, c1) values (1668073288221, 65);
sql insert into t1 (ts, c1) values (1668073288222, 65);
sql insert into t1 (ts, c1) values (1668073288223, 65);
sql insert into t1 (ts, c1) values (1668073288224, 65);
sql insert into t1 (ts, c1) values (1668073288225, 65);
sql insert into t1 (ts, c1) values (1668073288226, 65);

$loop_count = 0
5
54liuyao 已提交
642
loop81:
5
54liuyao 已提交
643 644 645

sleep 200

X
Xiaoyu Wang 已提交
646
sql select * from streamt4 order by startts;
5
54liuyao 已提交
647 648 649 650 651 652 653 654

$loop_count = $loop_count + 1
if $loop_count == 20 then
  return -1
endi

if $rows != 2 then
  print =====rows=$rows
5
54liuyao 已提交
655
  goto loop81
5
54liuyao 已提交
656 657 658 659
endi

if $data01 != 11 then
  print =====data01=$data01
5
54liuyao 已提交
660
  goto loop81
5
54liuyao 已提交
661 662 663 664
endi

if $data02 != 5 then
  print =====data02=$data02
5
54liuyao 已提交
665
  goto loop81
5
54liuyao 已提交
666 667 668 669
endi

if $data11 != 29 then
  print =====data11=$data11
5
54liuyao 已提交
670
  goto loop81
5
54liuyao 已提交
671 672 673 674
endi

if $data12 != 1 then
  print =====data12=$data12
5
54liuyao 已提交
675
  goto loop81
5
54liuyao 已提交
676 677 678 679 680 681 682 683 684
endi

sql insert into t1 (ts, c1) values (1668073288224, 64);

$loop_count = 0
loop9:

sleep 200

X
Xiaoyu Wang 已提交
685
sql select * from streamt4 order by startts;
5
54liuyao 已提交
686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 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

$loop_count = $loop_count + 1
if $loop_count == 20 then
  return -1
endi

if $rows != 4 then
  print =====rows=$rows
  goto loop9
endi

if $data01 != 11 then
  print =====data01=$data01
  goto loop9
endi

if $data02 != 5 then
  print =====data02=$data02
  goto loop9
endi

if $data11 != 29 then
  print =====data11=$data11
  goto loop9
endi

if $data12 != 1 then
  print =====data12=$data12
  goto loop9
endi

if $data21 != 65 then
  print =====data21=$data21
  goto loop9
endi

if $data22 != 3 then
  print =====data22=$data22
  goto loop9
endi

if $data31 != 64 then
  print =====data31=$data31
  goto loop9
endi

if $data32 != 1 then
  print =====data32=$data32
  goto loop9
endi

5
54liuyao 已提交
737 738 739 740 741 742 743
sql drop stream if exists streams5;
sql drop database if exists test5;
sql create database test5;
sql use test5;
sql create table tb (ts timestamp, a int);
sql insert into tb values (now + 1m , 1 );
sql create table b (c timestamp, d int, e int , f int, g double);
5
54liuyao 已提交
744 745 746

print create stream streams0 trigger at_once into streamt as select _wstart c1, count(*) c2, max(a) c3 from tb state_window(a);

5
54liuyao 已提交
747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799
sql create stream streams0 trigger at_once into streamt as select _wstart c1, count(*) c2, max(a) c3 from tb state_window(a);
sql insert into b values(1648791213000,NULL,NULL,NULL,NULL);
sql select * from streamt order by c1, c2, c3;

print data00:$data00
print data01:$data01

sql insert into b values(1648791213000,NULL,NULL,NULL,NULL);
sql select * from streamt order by c1, c2, c3;

print data00:$data00
print data01:$data01

sql insert into b values(1648791213001,1,2,2,2.0);
sql insert into b values(1648791213002,1,3,3,3.0);
sql insert into tb values(1648791213003,1);

sql select * from streamt;
print data00:$data00
print data01:$data01

sql delete from b where c >= 1648791213001 and c <= 1648791213002;
sql insert into b values(1648791223003,2,2,3,1.0); insert into b values(1648791223002,2,3,3,3.0);
sql insert into tb values (now + 1m , 1 );

sql select * from streamt;
print data00:$data00
print data01:$data01

sql insert into b(c,d) values (now + 6m , 6 );
sql delete from b where c >= 1648791213001 and c <= 1648791233005;;

$loop_count = 0
loop10:

sleep 200

sql select c2 from streamt;

$loop_count = $loop_count + 1
if $loop_count == 20 then
  return -1
endi

if $rows != 1 then
  print =====rows=$rows
  goto loop10
endi

if $data00 != 2 then
  print =====data00=$data00
  goto loop10
endi
5
54liuyao 已提交
800

5
54liuyao 已提交
801 802
print state0 end

5
54liuyao 已提交
803
system sh/exec.sh -n dnode1 -s stop -x SIGINT