fillIntervalRange.sim 4.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 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 171 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 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
$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 500
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, s varchar(20));;
sql create stream streams1 trigger at_once  into streamt as select  _wstart ts, count(*) c1 from t1 interval(1s) fill(NULL);
sql insert into t1 values(1648791211000,1,2,3,1.0,'aaa');
sleep 100
sql insert into t1 values(1648795308000,1,2,3,1.0,'aaa');

$loop_count = 0

loop0:

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

sleep 500
sql select * from streamt where c1 > 0;

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

sql select count(*) from streamt;

if $data00 != 4098 then
  print =====data00=$data00
  goto loop0
endi

sql insert into t1 values(1648800308000,1,1,1,1.0,'aaa');


$loop_count = 0

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

sleep 500
sql select * from streamt where c1 > 0;

if $rows != 3 then
  print =====rows=$rows
  goto loop1
endi

sql select count(*) from streamt;

if $data00 != 9098 then
  print =====rows=$rows
  goto loop1
endi

sql insert into t1 values(1648786211000,1,1,1,1.0,'aaa');


$loop_count = 0

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

sleep 500
sql select * from streamt where c1 > 0;

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

sql select count(*) from streamt;

if $data00 != 14098 then
  print =====rows=$rows
  goto loop2
endi

sql insert into t1 values(1648801308000,1,1,1,1.0,'aaa') (1648802308000,1,1,1,1.0,'aaa') (1648803308000,1,1,1,1.0,'aaa') (1648804308000,1,1,1,1.0,'aaa') (1648805308000,1,1,1,1.0,'aaa');


$loop_count = 0

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

sleep 500
sql select * from streamt where c1 > 0;

if $rows != 9 then
  print =====rows=$rows
  goto loop21
endi

sql select count(*) from streamt;

if $data00 != 19098 then
  print =====rows=$rows
  goto loop21
endi

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, s varchar(20));
print create stream streams1 trigger at_once  into streamt as select  _wstart ts, max(a) c1 from t1 interval(1s) fill(linear);
sql create stream streams1 trigger at_once  into streamt as select  _wstart ts, max(a) c1 from t1 interval(1s) fill(linear);

print create stream streams2 trigger at_once  into streamt2 as select  _wstart ts, max(a) c1 from t1 interval(1s) fill(prev);
sql create stream streams2 trigger at_once  into streamt2 as select  _wstart ts, max(a) c1 from t1 interval(1s) fill(prev);

sql insert into t1 values(1648791211000,1,2,3,1.0,'aaa');
sleep 100
sql insert into t1 values(1648795308000,1,2,3,1.0,'aaa');

$loop_count = 0

loop3:

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

sleep 500

print select count(*) from streamt;
sql select count(*) from streamt;

if $data00 != 4098 then
  print =====data00=$data00
  goto loop3
endi

print select count(*) from streamt2;
sql select count(*) from streamt2;

if $data00 != 4098 then
  print =====data00=$data00
  goto loop3
endi

sql insert into t1 values(1648800308000,1,1,1,1.0,'aaa');


$loop_count = 0

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

sleep 500

print select count(*) from streamt;
sql select count(*) from streamt;

if $data00 != 9098 then
  print =====rows=$rows
  goto loop4
endi

print select count(*) from streamt2;
sql select count(*) from streamt2;

if $data00 != 9098 then
  print =====rows=$rows
  goto loop4
endi

sql insert into t1 values(1648786211000,1,1,1,1.0,'aaa');


$loop_count = 0

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

sleep 500

print select count(*) from streamt;
sql select count(*) from streamt;

if $data00 != 14098 then
  print =====rows=$rows
  goto loop5
endi

print select count(*) from streamt2;
sql select count(*) from streamt2;

if $data00 != 14098 then
  print =====rows=$rows
  goto loop5
endi

system sh/stop_dnodes.sh

#goto looptest