ci:add stream ci
This commit is contained in:
parent
2783d914a2
commit
6519ef9045
|
@ -361,6 +361,155 @@ if $data02 != NULL then
|
|||
goto loop8
|
||||
endi
|
||||
|
||||
|
||||
print ===== step6
|
||||
print ===== table name
|
||||
|
||||
sql create database result5 vgroups 1;
|
||||
|
||||
sql create database test5 vgroups 1;
|
||||
sql use test5;
|
||||
|
||||
|
||||
sql create stable st(ts timestamp,a int,b int,c int) 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 stream streams51 trigger at_once into result5.streamt51 SUBTABLE("aaa") as select _wstart, count(*) c1 from st interval(10s);
|
||||
sql create stream streams52 trigger at_once into result5.streamt52 TAGS(cc varchar(100)) as select _wstart, count(*) c1 from st interval(10s);
|
||||
sql create stream streams53 trigger at_once into result5.streamt53 TAGS(dd varchar(100)) SUBTABLE(concat("aaa-", "1") ) as select _wstart, count(*) c1 from st interval(10s);
|
||||
|
||||
sql insert into t1 values(1648791213000,1,2,3);
|
||||
sql insert into t2 values(1648791213000,2,2,3);
|
||||
|
||||
$loop_count = 0
|
||||
loop9:
|
||||
|
||||
sleep 300
|
||||
|
||||
$loop_count = $loop_count + 1
|
||||
if $loop_count == 10 then
|
||||
return -1
|
||||
endi
|
||||
|
||||
print select table_name from information_schema.ins_tables where db_name="result5" order by 1;
|
||||
|
||||
sql select table_name from information_schema.ins_tables where db_name="result5" order by 1;
|
||||
|
||||
if $rows != 3 then
|
||||
print =====rows=$rows
|
||||
print $data00
|
||||
print $data10
|
||||
print $data20
|
||||
print $data40
|
||||
goto loop9
|
||||
endi
|
||||
|
||||
if $data00 != aaa then
|
||||
print =====data00=$data00
|
||||
goto loop9
|
||||
endi
|
||||
|
||||
if $data10 != aaa-1 then
|
||||
print =====data00=$data00
|
||||
goto loop9
|
||||
endi
|
||||
|
||||
$loop_count = 0
|
||||
loop10:
|
||||
|
||||
sleep 300
|
||||
|
||||
$loop_count = $loop_count + 1
|
||||
if $loop_count == 10 then
|
||||
return -1
|
||||
endi
|
||||
|
||||
print sql select tag_name from information_schema.ins_tags where db_name="result5" and stable_name = "streamt52" order by 1;
|
||||
|
||||
sql select tag_name from information_schema.ins_tags where db_name="result5" and stable_name = "streamt52" order by 1;
|
||||
|
||||
if $rows != 1 then
|
||||
print =====rows=$rows
|
||||
print $data00
|
||||
print $data10
|
||||
goto loop10
|
||||
endi
|
||||
|
||||
if $data00 != cc then
|
||||
print =====data00=$data00
|
||||
goto loop10
|
||||
endi
|
||||
|
||||
print sql select tag_name from information_schema.ins_tags where db_name="result5" and stable_name = "streamt53" order by 1;
|
||||
|
||||
sql select tag_name from information_schema.ins_tags where db_name="result5" and stable_name = "streamt53" order by 1;
|
||||
|
||||
if $rows != 1 then
|
||||
print =====rows=$rows
|
||||
print $data00
|
||||
print $data10
|
||||
goto loop10
|
||||
endi
|
||||
|
||||
if $data00 != dd then
|
||||
print =====data00=$data00
|
||||
goto loop10
|
||||
endi
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
$loop_count = 0
|
||||
loop11:
|
||||
|
||||
sleep 300
|
||||
|
||||
$loop_count = $loop_count + 1
|
||||
if $loop_count == 10 then
|
||||
return -1
|
||||
endi
|
||||
|
||||
sql select * from result5.streamt51;
|
||||
|
||||
if $rows != 1 then
|
||||
print =====rows=$rows
|
||||
print $data00 $data10
|
||||
goto loop11
|
||||
endi
|
||||
|
||||
if $data01 != 2 then
|
||||
print =====data01=$data01
|
||||
goto loop11
|
||||
endi
|
||||
|
||||
sql select * from result5.streamt52;
|
||||
|
||||
if $rows != 1 then
|
||||
print =====rows=$rows
|
||||
print $data00 $data10
|
||||
goto loop11
|
||||
endi
|
||||
|
||||
if $data01 != 2 then
|
||||
print =====data01=$data01
|
||||
goto loop11
|
||||
endi
|
||||
|
||||
sql select * from result5.streamt53;
|
||||
|
||||
if $rows != 1 then
|
||||
print =====rows=$rows
|
||||
print $data00 $data10
|
||||
goto loop11
|
||||
endi
|
||||
|
||||
if $data01 != 2 then
|
||||
print =====data01=$data01
|
||||
goto loop11
|
||||
endi
|
||||
|
||||
print ======over
|
||||
|
||||
system sh/stop_dnodes.sh
|
||||
|
|
Loading…
Reference in New Issue