678 lines
11 KiB
Plaintext
678 lines
11 KiB
Plaintext
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
|
|
sql create database test vgroups 1;
|
|
sql select * from information_schema.ins_databases
|
|
if $rows != 3 then
|
|
return -1
|
|
endi
|
|
|
|
print $data00 $data01 $data02
|
|
|
|
sql use test;
|
|
|
|
|
|
sql create table t1(ts timestamp, a int, b int , c int, d double);
|
|
sql create stream streams1 trigger at_once into streamt as select _wstart, count(*) c1, count(d) c2 , sum(a) c3 , max(b) c4, min(c) c5 from t1 interval(10s);
|
|
sql insert into t1 values(1648791213000,1,2,3,1.0);
|
|
sql insert into t1 values(1648791223001,2,2,3,1.1);
|
|
sql insert into t1 values(1648791233002,3,2,3,2.1);
|
|
sql insert into t1 values(1648791243003,4,2,3,3.1);
|
|
sql insert into t1 values(1648791213004,4,2,3,4.1);
|
|
sleep 1000
|
|
sql select `_wstart`, c1, c2 ,c3 ,c4, c5 from streamt;
|
|
|
|
if $rows != 4 then
|
|
print ======$rows
|
|
return -1
|
|
endi
|
|
|
|
# row 0
|
|
if $data01 != 2 then
|
|
print ======$data01
|
|
return -1
|
|
endi
|
|
|
|
if $data02 != 2 then
|
|
print ======$data02
|
|
return -1
|
|
endi
|
|
|
|
if $data03 != 5 then
|
|
print ======$data03
|
|
return -1
|
|
endi
|
|
|
|
if $data04 != 2 then
|
|
print ======$data04
|
|
return -1
|
|
endi
|
|
|
|
if $data05 != 3 then
|
|
print ======$data05
|
|
return -1
|
|
endi
|
|
|
|
# row 1
|
|
if $data11 != 1 then
|
|
print ======$data11
|
|
return -1
|
|
endi
|
|
|
|
if $data12 != 1 then
|
|
print ======$data12
|
|
return -1
|
|
endi
|
|
|
|
if $data13 != 2 then
|
|
print ======$data13
|
|
return -1
|
|
endi
|
|
|
|
if $data14 != 2 then
|
|
print ======$data14
|
|
return -1
|
|
endi
|
|
|
|
if $data15 != 3 then
|
|
print ======$data15
|
|
return -1
|
|
endi
|
|
|
|
# row 2
|
|
if $data21 != 1 then
|
|
print ======$data21
|
|
return -1
|
|
endi
|
|
|
|
if $data22 != 1 then
|
|
print ======$data22
|
|
return -1
|
|
endi
|
|
|
|
if $data23 != 3 then
|
|
print ======$data23
|
|
return -1
|
|
endi
|
|
|
|
if $data24 != 2 then
|
|
print ======$data24
|
|
return -1
|
|
endi
|
|
|
|
if $data25 != 3 then
|
|
print ======$data25
|
|
return -1
|
|
endi
|
|
|
|
# row 3
|
|
if $data31 != 1 then
|
|
print ======$data31
|
|
return -1
|
|
endi
|
|
|
|
if $data32 != 1 then
|
|
print ======$data32
|
|
return -1
|
|
endi
|
|
|
|
if $data33 != 4 then
|
|
print ======$data33
|
|
return -1
|
|
endi
|
|
|
|
if $data34 != 2 then
|
|
print ======$data34
|
|
return -1
|
|
endi
|
|
|
|
if $data35 != 3 then
|
|
print ======$data35
|
|
return -1
|
|
endi
|
|
|
|
sql insert into t1 values(1648791223001,12,14,13,11.1);
|
|
sleep 500
|
|
sql select * from streamt;
|
|
|
|
print count(*) , count(d) , sum(a) , max(b) , min(c)
|
|
print 0: $data00 , $data01 , $data02 , $data03 , $data04 , $data05
|
|
print 1: $data10 , $data11 , $data12 , $data13 , $data14 , $data15
|
|
|
|
if $rows != 4 then
|
|
print ======$rows
|
|
return -1
|
|
endi
|
|
|
|
# row 0
|
|
if $data01 != 2 then
|
|
print ======$data01
|
|
return -1
|
|
endi
|
|
|
|
if $data02 != 2 then
|
|
print ======$data02
|
|
return -1
|
|
endi
|
|
|
|
if $data03 != 5 then
|
|
print ======$data03
|
|
return -1
|
|
endi
|
|
|
|
if $data04 != 2 then
|
|
print ======$data04
|
|
return -1
|
|
endi
|
|
|
|
if $data05 != 3 then
|
|
print ======$data05
|
|
return -1
|
|
endi
|
|
|
|
# row 1
|
|
if $data11 != 1 then
|
|
print ======$data11
|
|
return -1
|
|
endi
|
|
|
|
if $data12 != 1 then
|
|
print ======$data12
|
|
return -1
|
|
endi
|
|
|
|
if $data13 != 12 then
|
|
print ======$data13
|
|
return -1
|
|
endi
|
|
|
|
if $data14 != 14 then
|
|
print ======$data14
|
|
return -1
|
|
endi
|
|
|
|
if $data15 != 13 then
|
|
print ======$data15
|
|
return -1
|
|
endi
|
|
|
|
# row 2
|
|
if $data21 != 1 then
|
|
print ======$data21
|
|
return -1
|
|
endi
|
|
|
|
if $data22 != 1 then
|
|
print ======$data22
|
|
return -1
|
|
endi
|
|
|
|
if $data23 != 3 then
|
|
print ======$data23
|
|
return -1
|
|
endi
|
|
|
|
if $data24 != 2 then
|
|
print ======$data24
|
|
return -1
|
|
endi
|
|
|
|
if $data25 != 3 then
|
|
print ======$data25
|
|
return -1
|
|
endi
|
|
|
|
# row 3
|
|
if $data31 != 1 then
|
|
print ======$data31
|
|
return -1
|
|
endi
|
|
|
|
if $data32 != 1 then
|
|
print ======$data32
|
|
return -1
|
|
endi
|
|
|
|
if $data33 != 4 then
|
|
print ======$data33
|
|
return -1
|
|
endi
|
|
|
|
if $data34 != 2 then
|
|
print ======$data34
|
|
return -1
|
|
endi
|
|
|
|
if $data35 != 3 then
|
|
print ======$data35
|
|
return -1
|
|
endi
|
|
|
|
sql insert into t1 values(1648791223002,12,14,13,11.1);
|
|
sleep 100
|
|
sql select `_wstart`, c1, c2 ,c3 ,c4, c5 from streamt;
|
|
|
|
# row 1
|
|
if $data11 != 2 then
|
|
print ======$data11
|
|
return -1
|
|
endi
|
|
|
|
if $data12 != 2 then
|
|
print ======$data12
|
|
return -1
|
|
endi
|
|
|
|
if $data13 != 24 then
|
|
print ======$data13
|
|
return -1
|
|
endi
|
|
|
|
if $data14 != 14 then
|
|
print ======$data14
|
|
return -1
|
|
endi
|
|
|
|
if $data15 != 13 then
|
|
print ======$data15
|
|
return -1
|
|
endi
|
|
|
|
sql insert into t1 values(1648791223003,12,14,13,11.1);
|
|
sleep 100
|
|
sql select `_wstart`, c1, c2 ,c3 ,c4, c5 from streamt;
|
|
|
|
# row 1
|
|
if $data11 != 3 then
|
|
print ======$data11
|
|
return -1
|
|
endi
|
|
|
|
if $data12 != 3 then
|
|
print ======$data12
|
|
return -1
|
|
endi
|
|
|
|
if $data13 != 36 then
|
|
print ======$data13
|
|
return -1
|
|
endi
|
|
|
|
if $data14 != 14 then
|
|
print ======$data14
|
|
return -1
|
|
endi
|
|
|
|
if $data15 != 13 then
|
|
print ======$data15
|
|
return -1
|
|
endi
|
|
|
|
sql insert into t1 values(1648791223001,1,1,1,1.1);
|
|
sql insert into t1 values(1648791223002,2,2,2,2.1);
|
|
sql insert into t1 values(1648791223003,3,3,3,3.1);
|
|
sleep 100
|
|
sql select `_wstart`, c1, c2 ,c3 ,c4, c5 from streamt;
|
|
|
|
# row 1
|
|
if $data11 != 3 then
|
|
print ======$data11
|
|
return -1
|
|
endi
|
|
|
|
if $data12 != 3 then
|
|
print ======$data12
|
|
return -1
|
|
endi
|
|
|
|
if $data13 != 6 then
|
|
print ======$data13
|
|
return -1
|
|
endi
|
|
|
|
if $data14 != 3 then
|
|
print ======$data14
|
|
return -1
|
|
endi
|
|
|
|
if $data15 != 1 then
|
|
print ======$data15
|
|
return -1
|
|
endi
|
|
|
|
sql insert into t1 values(1648791233003,3,2,3,2.1);
|
|
sql insert into t1 values(1648791233002,5,6,7,8.1);
|
|
sql insert into t1 values(1648791233002,3,2,3,2.1);
|
|
sleep 100
|
|
sql select `_wstart`, c1, c2 ,c3 ,c4, c5 from streamt;
|
|
|
|
# row 2
|
|
if $data21 != 2 then
|
|
print ======$data21
|
|
return -1
|
|
endi
|
|
|
|
if $data22 != 2 then
|
|
print ======$data22
|
|
return -1
|
|
endi
|
|
|
|
if $data23 != 6 then
|
|
print ======$data23
|
|
return -1
|
|
endi
|
|
|
|
if $data24 != 2 then
|
|
print ======$data24
|
|
return -1
|
|
endi
|
|
|
|
if $data25 != 3 then
|
|
print ======$data25
|
|
return -1
|
|
endi
|
|
|
|
sql insert into t1 values(1648791213004,4,2,3,4.1) (1648791213006,5,4,7,9.1) (1648791213004,40,20,30,40.1) (1648791213005,4,2,3,4.1);
|
|
sleep 100
|
|
sql select `_wstart`, c1, c2 ,c3 ,c4, c5 from streamt;
|
|
|
|
# row 0
|
|
if $data01 != 4 then
|
|
print ======$data01
|
|
return -1
|
|
endi
|
|
|
|
if $data02 != 4 then
|
|
print ======$data02
|
|
return -1
|
|
endi
|
|
|
|
if $data03 != 50 then
|
|
print ======$data03 != 50
|
|
return -1
|
|
endi
|
|
|
|
if $data04 != 20 then
|
|
print ======$data04 != 20
|
|
return -1
|
|
endi
|
|
|
|
if $data05 != 3 then
|
|
print ======$data05
|
|
return -1
|
|
endi
|
|
|
|
sql insert into t1 values(1648791223004,4,2,3,4.1) (1648791233006,5,4,7,9.1) (1648791223004,40,20,30,40.1) (1648791233005,4,2,3,4.1);
|
|
sleep 100
|
|
sql select `_wstart`, c1, c2 ,c3 ,c4, c5 from streamt;
|
|
|
|
# row 1
|
|
if $data11 != 4 then
|
|
print ======$data11
|
|
return -1
|
|
endi
|
|
|
|
if $data12 != 4 then
|
|
print ======$data12
|
|
return -1
|
|
endi
|
|
|
|
if $data13 != 46 then
|
|
print ======$data13 != 46
|
|
return -1
|
|
endi
|
|
|
|
if $data14 != 20 then
|
|
print ======$data14 != 20
|
|
return -1
|
|
endi
|
|
|
|
if $data15 != 1 then
|
|
print ======$data15
|
|
return -1
|
|
endi
|
|
|
|
# row 2
|
|
if $data21 != 4 then
|
|
print ======$data21
|
|
return -1
|
|
endi
|
|
|
|
if $data22 != 4 then
|
|
print ======$data22
|
|
return -1
|
|
endi
|
|
|
|
if $data23 != 15 then
|
|
print ======$data23
|
|
return -1
|
|
endi
|
|
|
|
if $data24 != 4 then
|
|
print ======$data24
|
|
return -1
|
|
endi
|
|
|
|
if $data25 != 3 then
|
|
print ======$data25
|
|
return -1
|
|
endi
|
|
|
|
sql create database test2 vgroups 1;
|
|
sql select * from information_schema.ins_databases;
|
|
|
|
sql use test2;
|
|
sql create stable st(ts timestamp, a int, b int, c int, d double) tags(ta int,tb int,tc int);
|
|
sql create table t1 using st tags(1,1,1);
|
|
sql create table t2 using st tags(2,2,2);
|
|
sql create table t3 using st tags(2,2,2);
|
|
sql create table t4 using st tags(2,2,2);
|
|
sql create table t5 using st tags(2,2,2);
|
|
sql create stream streams2 trigger at_once into streamt as select _wstart, count(*) c1, sum(a) c3,max(b) c4 from st partition by tbname interval(10s);
|
|
sql create stream streams3 trigger at_once into streamt3 as select _wstart, count(*) c1, sum(a) c3,max(b) c4, now c5 from st partition by tbname interval(10s);
|
|
|
|
sql insert into t1 values(1648791213000,1,1,1,1.0) t2 values(1648791213000,2,2,2,2.0) t3 values(1648791213000,3,3,3,3.0) t4 values(1648791213000,4,4,4,4.0);
|
|
|
|
$loop_count = 0
|
|
|
|
loop0:
|
|
sleep 300
|
|
|
|
$loop_count = $loop_count + 1
|
|
if $loop_count == 10 then
|
|
return -1
|
|
endi
|
|
|
|
sql select * from streamt;
|
|
|
|
if $rows != 4 then
|
|
print =====rows=$rows
|
|
goto loop0
|
|
endi
|
|
|
|
sql insert into t1 values(1648791213000,5,5,5,5.0) t2 values(1648791213000,6,6,6,6.0) t5 values(1648791213000,7,7,7,7.0);
|
|
|
|
|
|
$loop_count = 0
|
|
|
|
loop1:
|
|
sleep 300
|
|
|
|
$loop_count = $loop_count + 1
|
|
if $loop_count == 10 then
|
|
return -1
|
|
endi
|
|
|
|
sql select * from streamt order by c4 desc;
|
|
|
|
if $rows != 5 then
|
|
print =====rows=$rows
|
|
goto loop1
|
|
endi
|
|
|
|
# row 0
|
|
if $data01 != 1 then
|
|
print =====data01=$data01
|
|
goto loop1
|
|
endi
|
|
|
|
if $data02 != 7 then
|
|
print =====data02=$data02
|
|
goto loop1
|
|
endi
|
|
|
|
# row 1
|
|
if $data11 != 1 then
|
|
print =====data11=$data11
|
|
goto loop1
|
|
endi
|
|
|
|
if $data12 != 6 then
|
|
print =====data12=$data12
|
|
goto loop1
|
|
endi
|
|
|
|
# row 2
|
|
if $data21 != 1 then
|
|
print =====data21=$data21
|
|
goto loop1
|
|
endi
|
|
|
|
if $data22 != 5 then
|
|
print =====data22=$data22
|
|
goto loop1
|
|
endi
|
|
|
|
sql insert into t1 values(1648791213000,8,8,8,8.0);
|
|
|
|
$loop_count = 0
|
|
|
|
loop2:
|
|
sleep 300
|
|
|
|
$loop_count = $loop_count + 1
|
|
if $loop_count == 10 then
|
|
return -1
|
|
endi
|
|
|
|
sql select * from streamt order by c4 desc;
|
|
|
|
# row 0
|
|
if $data01 != 1 then
|
|
print =====data01=$data01
|
|
goto loop2
|
|
endi
|
|
|
|
if $data02 != 8 then
|
|
print =====data02=$data02
|
|
goto loop2
|
|
endi
|
|
|
|
$loop_count = 0
|
|
loop3:
|
|
sleep 300
|
|
|
|
$loop_count = $loop_count + 1
|
|
if $loop_count == 10 then
|
|
return -1
|
|
endi
|
|
|
|
sql select count(*) from streamt3;
|
|
# row 0
|
|
if $data00 != 5 then
|
|
print =====data00=$data00
|
|
goto loop3
|
|
endi
|
|
|
|
#max,min selectivity
|
|
sql create database test3 vgroups 1;
|
|
sql use test3;
|
|
sql create stable st(ts timestamp, a int, b int , c int) tags(ta int,tb int,tc int);
|
|
sql create table ts1 using st tags(1,1,1);
|
|
sql create stream stream_t3 trigger at_once into streamtST3 as select ts, min(a) c6, a, b, c, ta, tb, tc from ts1 interval(10s) ;
|
|
|
|
sql insert into ts1 values(1648791211000,1,2,3);
|
|
sleep 50
|
|
sql insert into ts1 values(1648791222001,2,2,3);
|
|
sleep 50
|
|
|
|
$loop_count = 0
|
|
loop3:
|
|
sql select * from streamtST3;
|
|
|
|
sleep 300
|
|
$loop_count = $loop_count + 1
|
|
if $loop_count == 10 then
|
|
return -1
|
|
endi
|
|
|
|
# row 0
|
|
if $data02 != 1 then
|
|
print =====data02=$data02
|
|
goto loop3
|
|
endi
|
|
|
|
# row 1
|
|
if $data12 != 2 then
|
|
print =====data12=$data12
|
|
goto loop3
|
|
endi
|
|
|
|
|
|
sql create database test4 vgroups 1;
|
|
sql use test4;
|
|
sql create table t1(ts timestamp, a int, b int , c int, d double);
|
|
sql create stream streams4 trigger at_once into streamt4 as select _wstart, count(*) c1 from t1 where a > 5 interval(10s);
|
|
sql insert into t1 values(1648791213000,1,2,3,1.0);
|
|
|
|
sleep 200
|
|
sql select * from streamt4;
|
|
|
|
# row 0
|
|
if $rows != 0 then
|
|
print =====rows=$rows
|
|
return -1
|
|
endi
|
|
|
|
sql insert into t1 values(1648791213000,6,2,3,1.0);
|
|
|
|
$loop_count = 0
|
|
loop4:
|
|
sleep 200
|
|
sql select * from streamt4;
|
|
|
|
$loop_count = $loop_count + 1
|
|
if $loop_count == 10 then
|
|
return -1
|
|
endi
|
|
|
|
if $data01 != 1 then
|
|
print =====data01=$data01
|
|
goto loop4
|
|
endi
|
|
|
|
sql insert into t1 values(1648791213000,2,2,3,1.0);
|
|
|
|
$loop_count = 0
|
|
loop5:
|
|
sleep 200
|
|
sql select * from streamt4;
|
|
|
|
$loop_count = $loop_count + 1
|
|
if $loop_count == 10 then
|
|
return -1
|
|
endi
|
|
|
|
if $rows != 0 then
|
|
print =====rows=$rows
|
|
goto loop5
|
|
endi
|
|
|
|
|
|
|
|
system sh/exec.sh -n dnode1 -s stop -x SIGINT
|