fillIntervalDelete0.sim 7.9 KB
Newer Older
5
54liuyao 已提交
1 2 3 4 5 6
$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
5
54liuyao 已提交
7
sleep 1000
5
54liuyao 已提交
8 9 10 11 12 13 14 15 16 17 18
sql connect

sql drop stream if exists streams1;
sql drop stream if exists streams2;
sql drop stream if exists streams3;
sql drop stream if exists streams4;
sql drop stream if exists streams5;
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 double, s varchar(20));
L
liuyao 已提交
19 20 21 22 23
sql create stream streams1 trigger at_once IGNORE EXPIRED 0 IGNORE UPDATE 0   into streamt1 as select  _wstart as ts, max(a), sum(b), count(*) from t1 where ts >= 1648791210000 and ts < 1648791261000 interval(1s) fill(NULL);
sql create stream streams2 trigger at_once IGNORE EXPIRED 0 IGNORE UPDATE 0   into streamt2 as select  _wstart as ts, max(a), sum(b), count(*) from t1 where ts >= 1648791210000 and ts < 1648791261000 interval(1s) fill(value,100,200,300);
sql create stream streams3 trigger at_once IGNORE EXPIRED 0 IGNORE UPDATE 0   into streamt3 as select  _wstart as ts, max(a), sum(b), count(*) from t1 where ts >= 1648791210000 and ts < 1648791261000 interval(1s) fill(next);
sql create stream streams4 trigger at_once IGNORE EXPIRED 0 IGNORE UPDATE 0   into streamt4 as select  _wstart as ts, max(a), sum(b), count(*) from t1 where ts >= 1648791210000 and ts < 1648791261000 interval(1s) fill(prev);
sql create stream streams5 trigger at_once IGNORE EXPIRED 0 IGNORE UPDATE 0   into streamt5 as select  _wstart as ts, max(a), sum(b), count(*) from t1 where ts >= 1648791210000 and ts < 1648791261000 interval(1s) fill(linear);
5
54liuyao 已提交
24
sql insert into t1 values(1648791213000,1,1,1,1.0,'aaa');
5
54liuyao 已提交
25
sleep 1000
5
54liuyao 已提交
26 27 28 29

$loop_count = 0

loop0:
5
54liuyao 已提交
30
sleep 1000
5
54liuyao 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48

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

sql select * from streamt1 order by ts;

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

sql delete from t1;

$loop_count = 0

loop1:
5
54liuyao 已提交
49
sleep 1000
5
54liuyao 已提交
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

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

sql select * from streamt1 order by ts;

if $rows != 0 then
  print =====rows1=$rows
  goto loop1
endi

sql select * from streamt2 order by ts;

if $rows != 0 then
  print =====rows2=$rows
  goto loop1
endi

sql select * from streamt3 order by ts;

if $rows != 0 then
  print =====rows3=$rows
  goto loop1
endi

sql select * from streamt4 order by ts;

if $rows != 0 then
  print =====rows4=$rows
  goto loop1
endi

sql select * from streamt5 order by ts;

if $rows != 0 then
  print =====rows5=$rows
  goto loop1
endi

sql insert into t1 values(1648791210000,4,4,4,4.0,'ddd');
sql insert into t1 values(1648791215000,2,2,2,2.0,'bbb');
sql insert into t1 values(1648791217000,3,3,3,3.0,'ccc');
sql insert into t1 values(1648791219000,5,5,5,5.0,'eee');

$loop_count = 0

loop2:
5
54liuyao 已提交
99
sleep 1000
5
54liuyao 已提交
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121

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

sql select * from streamt1 order by ts;

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

#temp
system sh/stop_dnodes.sh
return 1

sql delete from t1 where ts >= 1648791214000;

$loop_count = 0

loop3:
5
54liuyao 已提交
122
sleep 1000
5
54liuyao 已提交
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

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

sql select * from streamt1 order by ts;

if $rows != 1 then
  print =====rows1=$rows
  goto loop3
endi

sql select * from streamt2 order by ts;

if $rows != 1 then
  print =====rows2=$rows
  goto loop3
endi

sql select * from streamt3 order by ts;

if $rows != 1 then
  print =====rows3=$rows
  goto loop3
endi

sql select * from streamt4 order by ts;

if $rows != 1 then
  print =====rows4=$rows
  goto loop3
endi

sql select * from streamt5 order by ts;

if $rows != 1 then
  print =====rows5=$rows
  goto loop3
endi

if $data01 != 4 then
  print =====data01=$data01
5
54liuyao 已提交
166
  goto loop3
5
54liuyao 已提交
167 168 169 170 171 172 173 174 175 176 177
endi



sql insert into t1 values(1648791213000,5,5,5,5.0,'eee');
sql insert into t1 values(1648791215000,5,5,5,5.0,'eee');
sql insert into t1 values(1648791219000,6,6,6,6.0,'fff');

$loop_count = 0

loop4:
5
54liuyao 已提交
178
sleep 1000
5
54liuyao 已提交
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197

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

sql select * from streamt1 order by ts;

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


sql delete from t1 where ts <= 1648791216000;

$loop_count = 0

loop5:
5
54liuyao 已提交
198
sleep 1000
5
54liuyao 已提交
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 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241

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

sql select * from streamt1 order by ts;

if $rows != 1 then
  print =====rows1=$rows
  goto loop5
endi

sql select * from streamt2 order by ts;

if $rows != 1 then
  print =====rows2=$rows
  goto loop5
endi

sql select * from streamt3 order by ts;

if $rows != 1 then
  print =====rows3=$rows
  goto loop5
endi

sql select * from streamt4 order by ts;

if $rows != 1 then
  print =====rows4=$rows
  goto loop5
endi

sql select * from streamt5 order by ts;

if $rows != 1 then
  print =====rows5=$rows
  goto loop5
endi

if $data01 != 6 then
  print =====data01=$data01
5
54liuyao 已提交
242
  goto loop5
5
54liuyao 已提交
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
endi




sql drop stream if exists streams6;
sql drop stream if exists streams7;
sql drop stream if exists streams8;
sql drop stream if exists streams9;
sql drop stream if exists streams10;
sql drop database if exists test6;
sql create database test6  vgroups 1;
sql use test6;
sql create stable st(ts timestamp, a int, b int , c int, d double, s varchar(20)) tags(ta int,tb int,tc int);
sql create table t1 using st tags(1,1,1);
sql create table t2 using st tags(1,1,1);
L
liuyao 已提交
259 260 261 262 263
sql create stream streams6 trigger at_once IGNORE EXPIRED 0 IGNORE UPDATE 0   into streamt6 as select  _wstart as ts, max(a), sum(b), count(*) from st where ts >= 1648791210000 and ts < 1648791261000 interval(1s) fill(NULL);
sql create stream streams7 trigger at_once IGNORE EXPIRED 0 IGNORE UPDATE 0   into streamt7 as select  _wstart as ts, max(a), sum(b), count(*) from st where ts >= 1648791210000 and ts < 1648791261000 interval(1s) fill(value,100,200,300);
sql create stream streams8 trigger at_once IGNORE EXPIRED 0 IGNORE UPDATE 0   into streamt8 as select  _wstart as ts, max(a), sum(b), count(*) from st where ts >= 1648791210000 and ts < 1648791261000 interval(1s) fill(next);
sql create stream streams9 trigger at_once IGNORE EXPIRED 0 IGNORE UPDATE 0   into streamt9 as select  _wstart as ts, max(a), sum(b), count(*) from st where ts >= 1648791210000 and ts < 1648791261000 interval(1s) fill(prev);
sql create stream streams10 trigger at_once IGNORE EXPIRED 0 IGNORE UPDATE 0   into streamt10 as select  _wstart as ts, max(a), sum(b), count(*) from st where ts >= 1648791210000 and ts < 1648791261000 interval(1s) fill(linear);
5
54liuyao 已提交
264 265 266 267 268 269

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

sql insert into t2 values(1648791215000,1,1,1,1.0,'aaa');

5
54liuyao 已提交
270
sleep 1000
5
54liuyao 已提交
271 272 273 274

$loop_count = 0

loop7:
5
54liuyao 已提交
275
sleep 1000
5
54liuyao 已提交
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293

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

sql select * from streamt6 order by ts;

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

sql delete from t1;

$loop_count = 0

loop8:
5
54liuyao 已提交
294
sleep 1000
5
54liuyao 已提交
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375

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

sql select * from streamt6 order by ts;

if $rows != 0 then
  print =====rows6=$rows
  goto loop8
endi

sql select * from streamt7 order by ts;

if $rows != 0 then
  print =====rows7=$rows
  goto loop8
endi

sql select * from streamt8 order by ts;

if $rows != 0 then
  print =====rows8=$rows
  goto loop8
endi

sql select * from streamt9 order by ts;

if $rows != 0 then
  print =====rows9=$rows
  goto loop8
endi

sql select * from streamt10 order by ts;

if $rows != 0 then
  print =====rows10=$rows
  goto loop8
endi





















sql drop stream if exists streams0;
sql drop stream if exists streams1;
sql drop stream if exists streams2;
sql drop stream if exists streams3;
sql drop stream if exists streams4;
sql drop stream if exists streams5;
sql drop stream if exists streams6;
sql drop stream if exists streams7;
sql drop stream if exists streams8;

sql use test1;
sql select * from t1;
print $data00

$loop_all = $loop_all + 1
print ============loop_all=$loop_all

system sh/stop_dnodes.sh

#goto looptest