ignoreCheckUpdate.sim 5.5 KB
Newer Older
5
54liuyao 已提交
1 2 3 4 5 6
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

5
54liuyao 已提交
7 8
print step 1 start

5
54liuyao 已提交
9 10 11 12 13
sql drop stream if exists streams0;
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);
5
54liuyao 已提交
14

5
54liuyao 已提交
15
print create stream streams0 trigger at_once IGNORE EXPIRED 0 ignore update 1 into streamt as select  _wstart c1, count(*) c2, max(b) c3 from t1 interval(10s);
5
54liuyao 已提交
16

5
54liuyao 已提交
17
sql create stream streams0 trigger at_once IGNORE EXPIRED 0 ignore update 1 into streamt as select  _wstart c1, count(*) c2, max(b) c3 from t1 interval(10s);
5
54liuyao 已提交
18 19 20 21 22 23 24

sql insert into t1 values(1648791213000,1,1,1);
sql insert into t1 values(1648791213000,2,2,2);

$loop_count = 0

loop0:
5
54liuyao 已提交
25
sleep 1000
5
54liuyao 已提交
26 27 28 29 30 31 32 33 34 35 36 37
sql select * from streamt order by 1,2,3;

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

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

5
54liuyao 已提交
38
if $data02 != 2 then
5
54liuyao 已提交
39 40 41 42 43 44 45 46 47 48
  print =====data02=$data02
  goto loop0
endi


sql insert into t1 values(1648791213000,3,3,3);

$loop_count = 0

loop1:
5
54liuyao 已提交
49
sleep 1000
5
54liuyao 已提交
50 51 52 53 54 55 56 57 58 59 60 61
sql select * from streamt order by 1,2,3;

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

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

5
54liuyao 已提交
62
if $data02 != 3 then
5
54liuyao 已提交
63 64 65 66
  print =====data02=$data02
  goto loop1
endi

5
54liuyao 已提交
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
print step 1 end

print step 2 start

sql drop stream if exists streams1;
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);

print create stream streams1 trigger at_once ignore update 1 into streamt1 as select  _wstart c1, count(*) c2, max(b) c3 from t1 session(ts, 10s);

sql create stream streams1 trigger at_once ignore update 1 into streamt1 as select  _wstart c1, count(*) c2, max(b) c3 from t1 session(ts, 10s);

sql insert into t1 values(1648791213000,1,1,1);
sql insert into t1 values(1648791213000,2,2,2);

$loop_count = 0

loop2:
5
54liuyao 已提交
87
sleep 1000
5
54liuyao 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
sql select * from streamt1 order by 1,2,3;

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

if $data01 != 2 then
  print =====data01=$data01
  goto loop2
endi

if $data02 != 2 then
  print =====data02=$data02
  goto loop2
endi


sql insert into t1 values(1648791213000,3,3,3);

$loop_count = 0

loop3:

5
54liuyao 已提交
112
sleep 1000
5
54liuyao 已提交
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
sql select * from streamt1 order by 1,2,3;

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

if $data01 != 3 then
  print =====data01=$data01
  goto loop3
endi

if $data02 != 3 then
  print =====data02=$data02
  goto loop3
endi

print step 2 end

print step 3 start

sql drop stream if exists streams2;
sql drop database if exists test2;
sql create database test2  vgroups 1;
sql use test2;
sql create table t1(ts timestamp, a int, b int , c int);

print create stream streams2 trigger at_once ignore update 1 into streamt2 as select  _wstart c1, count(*) c2, max(b) c3 from t1 state_window(c);

sql create stream streams2 trigger at_once ignore update 1 into streamt2 as select  _wstart c1, count(*) c2, max(b) c3 from t1 state_window(c);

sql insert into t1 values(1648791213000,1,1,1);
sql insert into t1 values(1648791213000,2,2,1);

$loop_count = 0

L
liuyao 已提交
149
loop4:
5
54liuyao 已提交
150
sleep 1000
5
54liuyao 已提交
151 152 153 154 155 156 157 158 159
sql select * from streamt2 order by 1,2,3;

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

if $data01 != 2 then
  print =====data01=$data01
L
liuyao 已提交
160
  goto loop4
5
54liuyao 已提交
161 162 163 164
endi

if $data02 != 2 then
  print =====data02=$data02
L
liuyao 已提交
165
  goto loop4
5
54liuyao 已提交
166 167 168 169 170 171 172
endi


sql insert into t1 values(1648791213000,3,3,1);

$loop_count = 0

L
liuyao 已提交
173
loop5:
5
54liuyao 已提交
174

5
54liuyao 已提交
175
sleep 1000
5
54liuyao 已提交
176 177 178 179 180 181 182 183 184
sql select * from streamt2 order by 1,2,3;

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

if $data01 != 3 then
  print =====data01=$data01
L
liuyao 已提交
185
  goto loop5
5
54liuyao 已提交
186 187 188 189
endi

if $data02 != 3 then
  print =====data02=$data02
L
liuyao 已提交
190
  goto loop5
5
54liuyao 已提交
191 192 193 194
endi

print step 3 end

5
54liuyao 已提交
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
print step 4 start

sql drop stream if exists streams3;
sql drop database if exists test3;
sql create database test3  vgroups 4;
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 t1 using st tags(1,1,1);
sql create table t2 using st tags(2,2,2);

print create stream streams3 trigger at_once ignore update 1 into streamt3 as select  _wstart c1, count(*) c2, max(b) c3 from st interval(10s);

sql create stream streams3 trigger at_once ignore update 1 into streamt3 as select  _wstart c1, count(*) c2, max(b) c3 from st interval(10s);

sql insert into t1 values(1648791213000,1,1,1);
sql insert into t1 values(1648791213000,2,2,2);

sql insert into t2 values(1648791213000,1,1,1);
sql insert into t2 values(1648791213000,2,2,2);

$loop_count = 0

L
liuyao 已提交
217
loop6:
5
54liuyao 已提交
218
sleep 1000
5
54liuyao 已提交
219 220 221 222 223 224 225 226 227
sql select * from streamt3 order by 1,2,3;

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

if $data01 != 4 then
  print =====data01=$data01
L
liuyao 已提交
228
  goto loop6
5
54liuyao 已提交
229 230 231 232
endi

if $data02 != 2 then
  print =====data02=$data02
L
liuyao 已提交
233
  goto loop6
5
54liuyao 已提交
234 235 236 237 238 239 240
endi


sql insert into t1 values(1648791213000,3,3,3);

$loop_count = 0

L
liuyao 已提交
241
loop7:
5
54liuyao 已提交
242
sleep 1000
5
54liuyao 已提交
243 244 245 246 247 248 249 250 251
sql select * from streamt3 order by 1,2,3;

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

if $data01 != 5 then
  print =====data01=$data01
L
liuyao 已提交
252
  goto loop7
5
54liuyao 已提交
253 254 255 256
endi

if $data02 != 3 then
  print =====data02=$data02
L
liuyao 已提交
257
  goto loop7
5
54liuyao 已提交
258 259 260 261 262 263
endi

sql insert into t2 values(1648791213000,4,4,4);

$loop_count = 0

L
liuyao 已提交
264
loop8:
5
54liuyao 已提交
265
sleep 1000
5
54liuyao 已提交
266 267 268 269 270 271 272 273 274
sql select * from streamt3 order by 1,2,3;

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

if $data01 != 6 then
  print =====data01=$data01
L
liuyao 已提交
275
  goto loop8
5
54liuyao 已提交
276 277 278 279
endi

if $data02 != 4 then
  print =====data02=$data02
L
liuyao 已提交
280
  goto loop8
5
54liuyao 已提交
281 282 283 284
endi

print step 4 end

5
54liuyao 已提交
285
system sh/stop_dnodes.sh