$loop_all = 0 looptest: 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 sql drop database if exists test; sql create database test vgroups 1; sql use test; sql create table t1(ts timestamp, a int, b int , c int, d double); sql create stream streams0 trigger at_once IGNORE EXPIRED 0 IGNORE UPDATE 0 into streamt as select _wstart c1, count(*) c2, max(a) c3, _group_key(a) c4 from t1 partition by a state_window(b); run tsim/stream/checkTaskStatus.sim sql insert into t1 values(1648791213000,NULL,NULL,NULL,NULL); sql insert into t1 values(1648791213000,NULL,NULL,NULL,NULL); $loop_count = 0 loop0: sleep 1000 sql select * from streamt order by c1, c4, c2, c3; $loop_count = $loop_count + 1 if $loop_count == 10 then return -1 endi if $rows != 0 then print =====rows=$rows goto loop0 endi sql insert into t1 values(1648791213000,1,1,3,1.0); $loop_count = 0 loop1: sleep 1000 sql select * from streamt order by c1, c4, c2, c3; $loop_count = $loop_count + 1 if $loop_count == 10 then return -1 endi if $data01 != 1 then print =====data01=$data01 goto loop1 endi if $data02 != 1 then print =====data02=$data02 goto loop1 endi sql insert into t1 values(1648791213000,2,1,3,1.0); $loop_count = 0 loop2: sleep 1000 sql select * from streamt order by c1, c4, c2, c3; $loop_count = $loop_count + 1 if $loop_count == 10 then return -1 endi if $data01 != 1 then print =====data01=$data01 goto loop2 endi if $data02 != 2 then print =====data02=$data02 goto loop2 endi sql insert into t1 values(1648791213000,2,1,3,1.0); sql insert into t1 values(1648791213001,2,1,3,1.0); sql insert into t1 values(1648791213002,2,1,3,1.0); sql insert into t1 values(1648791213002,1,1,3,1.0); $loop_count = 0 loop3: sleep 1000 sql select * from streamt order by c1, c4, c2, c3; $loop_count = $loop_count + 1 if $loop_count == 10 then return -1 endi if $data01 != 2 then print =====data01=$data01 goto loop3 endi if $data02 != 2 then print =====data02=$data02 goto loop3 endi if $data11 != 1 then print =====data11=$data11 goto loop3 endi if $data12 != 1 then print =====data12=$data12 goto loop3 endi sql insert into t1 values(1648791223000,1,2,3,1.0); sql insert into t1 values(1648791223001,1,2,3,1.0); sql insert into t1 values(1648791223002,3,2,3,1.0); sql insert into t1 values(1648791223003,3,2,3,1.0); sql insert into t1 values(1648791213001,1,1,3,1.0) (1648791223001,2,2,3,1.0) (1648791223003,1,2,3,1.0); $loop_count = 0 loop4: sleep 1000 sql select * from streamt order by c1, c4, c2, c3; $loop_count = $loop_count + 1 if $loop_count == 10 then return -1 endi if $data01 != 1 then print =====data01=$data01 goto loop4 endi if $data02 != 2 then print =====data02=$data02 goto loop4 endi if $data11 != 2 then print =====data11=$data11 goto loop4 endi if $data12 != 1 then print =====data12=$data12 goto loop4 endi if $data21 != 2 then print =====data21=$data21 goto loop4 endi if $data22 != 1 then print =====data22=$data22 goto loop4 endi if $data31 != 1 then print =====data31=$data31 goto loop4 endi if $data32 != 2 then print =====data32=$data32 goto loop4 endi if $data41 != 1 then print =====data41=$data41 goto loop4 endi if $data42 != 3 then print =====data42=$data42 goto loop4 endi sql drop database if exists test1; sql create database test1 vgroups 1; sql use test1; sql create table t1(ts timestamp, a int, b int , c int, d int); sql create stream streams1 trigger at_once IGNORE EXPIRED 0 IGNORE UPDATE 0 into streamt1 as select _wstart c1, count(*) c2, max(d) c3, _group_key(a+b) c4 from t1 partition by a+b state_window(c); run tsim/stream/checkTaskStatus.sim sql insert into t1 values(1648791213000,NULL,NULL,NULL,NULL); sql insert into t1 values(1648791213000,NULL,NULL,NULL,NULL); sql insert into t1 values(1648791213000,1,2,1,1); sql insert into t1 values(1648791213001,2,1,1,2); sql insert into t1 values(1648791213001,1,2,1,3); $loop_count = 0 loop5: sleep 1000 sql select * from streamt1 order by c1, c4, c2, c3; $loop_count = $loop_count + 1 if $loop_count == 10 then return -1 endi if $data01 != 2 then print =====data01=$data01 goto loop5 endi sql insert into t1 values(1648791223000,1,2,2,4); sql insert into t1 values(1648791223001,1,2,2,5); sql insert into t1 values(1648791223002,1,2,2,6); sql insert into t1 values(1648791213001,1,1,1,7) (1648791223002,1,1,2,8); $loop_count = 0 loop6: sleep 1000 sql select * from streamt1 order by c1, c4, c2, c3; $loop_count = $loop_count + 1 if $loop_count == 10 then return -1 endi if $data01 != 1 then print =====data01=$data01 goto loop6 endi if $data02 != 1 then print =====data02=$data02 goto loop6 endi if $data11 != 1 then print =====data11=$data11 goto loop6 endi if $data12 != 7 then print =====data12=$data12 goto loop6 endi if $data21 != 2 then print =====data21=$data21 goto loop6 endi if $data22 != 5 then print =====data22=$data22 goto loop6 endi if $data31 != 1 then print =====data31=$data31 goto loop6 endi if $data32 != 8 then print =====data32=$data32 goto loop6 endi print ================step2 sql drop database if exists test2; sql create database test2 vgroups 4; sql use test2; sql create table t1(ts timestamp, a int, b int , c int, d double); sql create stream streams6 trigger at_once IGNORE EXPIRED 0 IGNORE UPDATE 0 into streamt6 subtable("aaa-a") as select _wstart, count(*) from t1 partition by a session(ts, 10s); run tsim/stream/checkTaskStatus.sim sql insert into t1 values(1648791213000,0,2,3,1.0); sql insert into t1 values(1648791213001,1,2,3,1.0); sql insert into t1 values(1648791213002,2,2,3,1.0); sql insert into t1 values(1648791213003,0,2,3,1.0); sql insert into t1 values(1648791213004,1,2,3,1.0); sql insert into t1 values(1648791213005,2,2,3,1.0); print delete from t1 where ts <= 1648791213002; sql delete from t1 where ts <= 1648791213002; $loop_count = 0 loop7: sleep 300 $loop_count = $loop_count + 1 if $loop_count == 10 then return -1 endi sql select * from streamt6 order by 1; print $data00 $data01 $data02 print $data10 $data11 $data12 print $data20 $data21 $data22 print $data30 $data31 $data32 print $data40 $data41 $data42 if $rows != 3 then print ======rows=$rows goto loop7 endi if $data01 != 1 then print ======data01=$data01 goto loop7 endi if $data11 != 1 then print ======data11=$data11 goto loop7 endi if $data21 != 1 then print ======data21=$data21 goto loop7 endi print ========over system sh/stop_dnodes.sh #goto looptest