fill_us.sim 21.9 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
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
system sh/exec.sh -n dnode1 -s start
sql connect

$dbPrefix = m_fl_db
$tbPrefix = m_fl_tb
$mtPrefix = m_fl_mt
$tbNum = 10
$rowNum = 5
$totalNum = $tbNum * $rowNum
$ts0 = 1537146000000000      # 2018-09-17 09:00:00.000000
$delta = 600000000
print ========== fill_us.sim
$i = 0
$db = $dbPrefix . $i
$mt = $mtPrefix . $i

sql drop database $db -x step1
step1:
sql create database $db precision 'us'
sql use $db
sql create table $mt (ts timestamp, c1 int, c2 bigint, c3 float, c4 double, c5 smallint, c6 bool, c7 binary(10), c8 nchar(10)) tags(tgcol int)

$i = 0
$ts = $ts0
while $i < $tbNum
  $tb = $tbPrefix . $i
  sql create table $tb using $mt tags( $i )
G
Ganlin Zhao 已提交
30

31 32 33 34
  $x = 0
  while $x < $rowNum
    $xs = $x * $delta
    $ts = $ts0 + $xs
G
Ganlin Zhao 已提交
35
    sql insert into $tb values ( $ts , $x , $x , $x , $x , $x , true, 'BINARY', 'NCHAR' )
36
    $x = $x + 1
G
Ganlin Zhao 已提交
37 38
  endw

39
  $i = $i + 1
G
Ganlin Zhao 已提交
40
endw
41 42 43 44 45 46 47 48 49

# setup
$i = 0
$tb = $tbPrefix . $i
$tsu = 4 * $delta
$tsu = $tsu + $ts0

## fill syntax test
# number of fill values exceeds number of selected columns
S
Shengliang Guan 已提交
50 51
print select _wstart, max(c1), max(c2), max(c3), max(c4), max(c5) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 6, 6, 6, 6, 6, 6, 6, 6)
sql select _wstart, max(c1), max(c2), max(c3), max(c4), max(c5) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 6, 6, 6, 6, 6, 6, 6, 6)
52 53 54 55 56 57 58 59 60 61 62 63 64 65
if $data11 != 6 then
  return -1
endi
if $data12 != 6 then
  return -1
endi
if $data13 != 6.00000 then
  return -1
endi
if $data14 != 6.000000000 then
  return -1
endi

# number of fill values is smaller than number of selected columns
S
Shengliang Guan 已提交
66 67
print sql select _wstart, max(c1), max(c2), max(c3) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 6, 6)
sql select _wstart, max(c1), max(c2), max(c3) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 6, 6)
68 69 70 71 72 73 74 75 76
if $data11 != 6 then
  return -1
endi
if $data12 != 6 then
  return -1
endi
if $data13 != 6.00000 then
  return -1
endi
G
Ganlin Zhao 已提交
77

78 79 80 81 82 83 84 85 86
# unspecified filling method
sql_error select max(c1), max(c2), max(c3), max(c4), max(c5) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill (6, 6, 6, 6, 6)

## constant fill test
# count_with_fill
print constant_fill test
print count_with_constant_fill
print sql select count(c1), count(c2), count(c3), count(c4), count(c5), count(c6), count(c7), count(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 6, 6, 6, 6, 6, 6, 6, 6)
sql select count(c1), count(c2), count(c3), count(c4), count(c5), count(c6), count(c7), count(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 6, 6, 6, 6, 6, 6, 6, 6)
G
Ganlin Zhao 已提交
87
if $rows != 9 then
88 89 90 91 92
  return -1
endi
if $data01 != 1 then
  return -1
endi
G
Ganlin Zhao 已提交
93
if $data11 != 6 then
94 95 96 97 98
  return -1
endi
if $data21 != 1 then
  return -1
endi
G
Ganlin Zhao 已提交
99
if $data31 != 6 then
100 101 102 103 104
  return -1
endi
if $data41 != 1 then
  return -1
endi
G
Ganlin Zhao 已提交
105
if $data51 != 6 then
106 107 108 109 110
  return -1
endi
if $data61 != 1 then
  return -1
endi
G
Ganlin Zhao 已提交
111
if $data71 != 6 then
112 113 114 115 116 117 118 119 120
  return -1
endi
if $data81 != 1 then
  return -1
endi

# avg_with_fill
print avg_witt_constant_fill
sql select avg(c1), avg(c2), avg(c3), avg(c4), avg(c5) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 6, 6, 6, 6, 6)
G
Ganlin Zhao 已提交
121
if $rows != 9 then
122 123 124 125 126
  return -1
endi
if $data01 != 0.000000000 then
  return -1
endi
G
Ganlin Zhao 已提交
127
if $data11 != 6.000000000 then
128 129 130 131 132
  return -1
endi
if $data21 != 1.000000000 then
  return -1
endi
G
Ganlin Zhao 已提交
133
if $data31 != 6.000000000 then
134 135 136 137 138
  return -1
endi
if $data41 != 2.000000000 then
  return -1
endi
G
Ganlin Zhao 已提交
139
if $data51 != 6.000000000 then
140 141 142 143 144
  return -1
endi
if $data61 != 3.000000000 then
  return -1
endi
G
Ganlin Zhao 已提交
145
if $data71 != 6.000000000 then
146 147 148 149 150 151 152 153 154
  return -1
endi
if $data81 != 4.000000000 then
  return -1
endi

# max_with_fill
print max_with_fill
sql select max(c1), max(c2), max(c3), max(c4), max(c5) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 6, 6, 6, 6, 6)
G
Ganlin Zhao 已提交
155
if $rows != 9 then
156 157 158 159 160
  return -1
endi
if $data01 != 0 then
  return -1
endi
G
Ganlin Zhao 已提交
161
if $data11 != 6 then
162 163 164 165 166
  return -1
endi
if $data21 != 1 then
  return -1
endi
G
Ganlin Zhao 已提交
167
if $data31 != 6 then
168 169 170 171 172
  return -1
endi
if $data41 != 2 then
  return -1
endi
G
Ganlin Zhao 已提交
173
if $data51 != 6 then
174 175 176 177 178
  return -1
endi
if $data61 != 3 then
  return -1
endi
G
Ganlin Zhao 已提交
179
if $data71 != 6 then
180 181 182 183 184 185 186 187 188
  return -1
endi
if $data81 != 4 then
  return -1
endi

# min_with_fill
print min_with_fill
sql select min(c1), min(c2), min(c3), min(c4), min(c5) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 6, 6, 6, 6, 6, 6, 6, 6)
G
Ganlin Zhao 已提交
189
if $rows != 9 then
190 191 192 193 194
  return -1
endi
if $data01 != 0 then
  return -1
endi
G
Ganlin Zhao 已提交
195
if $data11 != 6 then
196 197 198 199 200
  return -1
endi
if $data21 != 1 then
  return -1
endi
G
Ganlin Zhao 已提交
201
if $data31 != 6 then
202 203 204 205 206
  return -1
endi
if $data41 != 2 then
  return -1
endi
G
Ganlin Zhao 已提交
207
if $data51 != 6 then
208 209 210 211 212
  return -1
endi
if $data61 != 3 then
  return -1
endi
G
Ganlin Zhao 已提交
213
if $data71 != 6 then
214 215 216 217 218 219 220 221
  return -1
endi
if $data81 != 4 then
  return -1
endi

# first_with_fill
print first_with_fill
S
Shengliang Guan 已提交
222
sql select _wstart, first(c1), first(c2), first(c3), first(c4), first(c5), first(c6), first(c7), first(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 6, 6, 6, 6, 6, 6, 6, 6)
G
Ganlin Zhao 已提交
223
if $rows != 9 then
224 225 226 227 228
  return -1
endi
if $data01 != 0 then
  return -1
endi
G
Ganlin Zhao 已提交
229
if $data11 != 6 then
230 231 232 233 234
  return -1
endi
if $data21 != 1 then
  return -1
endi
G
Ganlin Zhao 已提交
235
if $data31 != 6 then
236 237 238 239 240
  return -1
endi
if $data41 != 2 then
  return -1
endi
G
Ganlin Zhao 已提交
241
if $data51 != 6 then
242 243 244 245 246
  return -1
endi
if $data61 != 3 then
  return -1
endi
G
Ganlin Zhao 已提交
247
if $data71 != 6 then
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
  return -1
endi
if $data81 != 4 then
  return -1
endi

# check double type values
if $data04 != 0.000000000 then
  return -1
endi
print data14 = $data14
if $data14 != 6.000000000 then
  return -1
endi
if $data24 != 1.000000000 then
  return -1
endi
if $data34 != 6.000000000 then
  return -1
endi
if $data44 != 2.000000000 then
  return -1
endi
if $data54 != 6.000000000 then
  return -1
endi
if $data64 != 3.000000000 then
  return -1
endi

# check float type values
print $data03 $data13
if $data03 != 0.00000 then
  return -1
endi
if $data13 != 6.00000 then
  return -1
endi
if $data23 != 1.00000 then
  return -1
endi
if $data33 != 6.00000 then
  return -1
endi
if $data43 != 2.00000 then
  return -1
endi
if $data53 != 6.00000 then
  return -1
endi
if $data63 != 3.00000 then
  return -1
endi
if $data73 != 6.00000 then
  return -1
endi
if $data83 != 4.00000 then
  return -1
endi


# last_with_fill
print last_with_fill
sql select last(c1), last(c2), last(c3), last(c4), last(c5), last(c6), last(c7), last(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 6, 6, 6, 6, 6, 6, 6, 6)
G
Ganlin Zhao 已提交
312
if $rows != 9 then
313 314 315 316 317
  return -1
endi
if $data01 != 0 then
  return -1
endi
G
Ganlin Zhao 已提交
318
if $data11 != 6 then
319 320 321 322 323
  return -1
endi
if $data21 != 1 then
  return -1
endi
G
Ganlin Zhao 已提交
324
if $data31 != 6 then
325 326 327 328 329
  return -1
endi
if $data41 != 2 then
  return -1
endi
G
Ganlin Zhao 已提交
330
if $data51 != 6 then
331 332 333 334 335
  return -1
endi
if $data61 != 3 then
  return -1
endi
G
Ganlin Zhao 已提交
336
if $data71 != 6 then
337 338 339 340 341 342 343
  return -1
endi
if $data81 != 4 then
  return -1
endi

# fill_negative_values
S
Shengliang Guan 已提交
344
sql select _wstart, sum(c1), avg(c2), max(c3), min(c4), count(c5), count(c6), count(c7), count(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, -1, -1, -1, -1, -1, -1, -1, -1)
G
Ganlin Zhao 已提交
345
if $rows != 9 then
346 347 348 349 350
  return -1
endi
if $data01 != 0 then
  return -1
endi
G
Ganlin Zhao 已提交
351
if $data11 != -1 then
352 353 354 355
  return -1
endi

# fill_char_values_to_arithmetic_fields
S
Shengliang Guan 已提交
356
sql select sum(c1), avg(c2), max(c3), min(c4), avg(c4), count(c6), last(c7), last(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 'c', 'c', 'c', 'c', 'c', 'c', 'c', 'c')
357 358

# fill_multiple_columns
S
Shengliang Guan 已提交
359 360
sql_error select _wstart, sum(c1), avg(c2), min(c3), max(c4), count(c6), first(c7), last(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 99, 99, 99, 99, 99, abc, abc)
sql select _wstart, sum(c1), avg(c2), min(c3), max(c4) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 99, 99, 99, 99)
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
if $rows != 9 then
  return -1
endi
print data01 = $data01
print data11 = $data11
if $data01 != 0 then
  return -1
endi
if $data11 != 99 then
  return -1
endi

sql select * from $tb
#print data08 = $data08
if $data08 != NCHAR then
  return -1
endi
#return -1


# fill_into_nonarithmetic_fieds
S
Shengliang Guan 已提交
382
sql select _wstart, first(c6), first(c7), first(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 20000000, 20000000, 20000000)
383
#if $data11 != 20000000 then
S
Shengliang Guan 已提交
384
if $data11 != NULL then
385 386 387 388 389 390 391 392 393
  return -1
endi

sql select first(c6), first(c7), first(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 1, 1, 1)
sql select first(c6), first(c7), first(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 1.1, 1.1, 1.1)
sql select first(c6), first(c7), first(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 1e1, 1e1, 1e1)
sql select first(c7), first(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, '1e', '1e1')
# fill quoted values into bool column will throw error unless the value is 'true' or 'false' Note:2018-10-24
# fill values into binary or nchar columns will be set to null automatically Note:2018-10-24
S
Shengliang Guan 已提交
394
sql select first(c6), first(c7), first(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, '1e', '1e1','1e1')
395 396 397 398 399 400
sql select first(c6), first(c7), first(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, true, true, true)
sql select first(c6), first(c7), first(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 'true', 'true','true')


# fill nonarithmetic values into arithmetic fields
sql_error select count(*) where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, abc);
S
Shengliang Guan 已提交
401
sql select count(*) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 'true');
402

S
Shengliang Guan 已提交
403
sql select _wstart, count(*) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, '1e1');
G
Ganlin Zhao 已提交
404
if $rows != 9 then
405 406 407 408 409 410
  return -1
endi
if $data01 != 1 then
  return -1
endi

S
Shengliang Guan 已提交
411
sql select _wstart, count(*) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, 1e1);
G
Ganlin Zhao 已提交
412
if $rows != 9 then
413 414 415 416 417 418
  return -1
endi
if $data01 != 1 then
  return -1
endi

S
Shengliang Guan 已提交
419
sql select _wstart, count(*) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(value, '10');
G
Ganlin Zhao 已提交
420
if $rows != 9 then
421 422 423 424 425 426 427 428 429 430 431 432 433
  return -1
endi
if $data01 != 1 then
  return -1
endi


## linear fill
# feature currently switched off 2018/09/29
#sql select count(c1), count(c2), count(c3), count(c4), count(c5), count(c6), count(c7), count(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(linear)

## previous fill
print fill(prev)
S
Shengliang Guan 已提交
434
sql select _wstart, count(c1), count(c2), count(c3), count(c4), count(c5), count(c6), count(c7), count(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(prev)
G
Ganlin Zhao 已提交
435
if $rows != 9 then
436 437 438 439 440
  return -1
endi
if $data01 != 1 then
  return -1
endi
G
Ganlin Zhao 已提交
441
if $data11 != 1 then
442 443 444 445 446
  return -1
endi
if $data21 != 1 then
  return -1
endi
G
Ganlin Zhao 已提交
447
if $data31 != 1 then
448 449 450 451 452
  return -1
endi
if $data41 != 1 then
  return -1
endi
G
Ganlin Zhao 已提交
453
if $data51 != 1 then
454 455 456 457 458
  return -1
endi
if $data61 != 1 then
  return -1
endi
G
Ganlin Zhao 已提交
459
if $data71 != 1 then
460 461 462 463 464 465 466
  return -1
endi
if $data81 != 1 then
  return -1
endi

# avg_with_fill
S
Shengliang Guan 已提交
467
sql select _wstart, avg(c1), avg(c2), avg(c3), avg(c4), avg(c5) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(prev)
G
Ganlin Zhao 已提交
468
if $rows != 9 then
469 470 471 472 473
  return -1
endi
if $data01 != 0.000000000 then
  return -1
endi
G
Ganlin Zhao 已提交
474
if $data11 != 0.000000000 then
475 476 477 478 479
  return -1
endi
if $data21 != 1.000000000 then
  return -1
endi
G
Ganlin Zhao 已提交
480
if $data31 != 1.000000000 then
481 482 483 484 485
  return -1
endi
if $data41 != 2.000000000 then
  return -1
endi
G
Ganlin Zhao 已提交
486
if $data51 != 2.000000000 then
487 488 489 490 491
  return -1
endi
if $data61 != 3.000000000 then
  return -1
endi
G
Ganlin Zhao 已提交
492
if $data71 != 3.000000000 then
493 494 495 496 497 498 499 500
  return -1
endi
if $data81 != 4.000000000 then
  return -1
endi

# max_with_fill
sql select max(c1), max(c2), max(c3), max(c4), max(c5) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(prev)
G
Ganlin Zhao 已提交
501
if $rows != 9 then
502 503 504 505 506
  return -1
endi
if $data01 != 0 then
  return -1
endi
G
Ganlin Zhao 已提交
507
if $data11 != 0 then
508 509 510 511 512
  return -1
endi
if $data21 != 1 then
  return -1
endi
G
Ganlin Zhao 已提交
513
if $data31 != 1 then
514 515 516 517 518
  return -1
endi
if $data41 != 2 then
  return -1
endi
G
Ganlin Zhao 已提交
519
if $data51 != 2 then
520 521 522 523 524
  return -1
endi
if $data61 != 3 then
  return -1
endi
G
Ganlin Zhao 已提交
525
if $data71 != 3 then
526 527 528 529 530 531 532 533
  return -1
endi
if $data81 != 4 then
  return -1
endi

# min_with_fill
sql select min(c1), min(c2), min(c3), min(c4), min(c5) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(prev)
G
Ganlin Zhao 已提交
534
if $rows != 9 then
535 536 537 538 539
  return -1
endi
if $data01 != 0 then
  return -1
endi
G
Ganlin Zhao 已提交
540
if $data11 != 0 then
541 542 543 544 545
  return -1
endi
if $data21 != 1 then
  return -1
endi
G
Ganlin Zhao 已提交
546
if $data31 != 1 then
547 548 549 550 551
  return -1
endi
if $data41 != 2 then
  return -1
endi
G
Ganlin Zhao 已提交
552
if $data51 != 2 then
553 554 555 556 557
  return -1
endi
if $data61 != 3 then
  return -1
endi
G
Ganlin Zhao 已提交
558
if $data71 != 3 then
559 560 561 562 563 564 565 566
  return -1
endi
if $data81 != 4 then
  return -1
endi

# first_with_fill
sql select first(c1), first(c2), first(c3), first(c4), first(c5), first(c6), first(c7), first(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(prev)
G
Ganlin Zhao 已提交
567
if $rows != 9 then
568 569 570 571 572
  return -1
endi
if $data01 != 0 then
  return -1
endi
G
Ganlin Zhao 已提交
573
if $data11 != 0 then
574 575 576 577 578
  return -1
endi
if $data21 != 1 then
  return -1
endi
G
Ganlin Zhao 已提交
579
if $data31 != 1 then
580 581 582 583 584
  return -1
endi
if $data41 != 2 then
  return -1
endi
G
Ganlin Zhao 已提交
585
if $data51 != 2 then
586 587 588 589 590
  return -1
endi
if $data61 != 3 then
  return -1
endi
G
Ganlin Zhao 已提交
591
if $data71 != 3 then
592 593 594 595 596 597 598 599
  return -1
endi
if $data81 != 4 then
  return -1
endi

# last_with_fill
sql select last(c1), last(c2), last(c3), last(c4), last(c5), last(c6), last(c7), last(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(prev)
G
Ganlin Zhao 已提交
600
if $rows != 9 then
601 602 603 604 605
  return -1
endi
if $data01 != 0 then
  return -1
endi
G
Ganlin Zhao 已提交
606
if $data11 != 0 then
607 608 609 610 611
  return -1
endi
if $data21 != 1 then
  return -1
endi
G
Ganlin Zhao 已提交
612
if $data31 != 1 then
613 614 615 616 617
  return -1
endi
if $data41 != 2 then
  return -1
endi
G
Ganlin Zhao 已提交
618
if $data51 != 2 then
619 620 621 622 623
  return -1
endi
if $data61 != 3 then
  return -1
endi
G
Ganlin Zhao 已提交
624
if $data71 != 3 then
625 626 627 628 629 630 631 632 633 634
  return -1
endi
if $data81 != 4 then
  return -1
endi

## NULL fill
print fill(value, NULL)
# count_with_fill
sql select count(c1), count(c2), count(c3), count(c4), count(c5), count(c6), count(c7), count(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill( NULL)
S
Shengliang Guan 已提交
635 636
print select _wstart, count(c1), count(c2), count(c3), count(c4), count(c5), count(c6), count(c7), count(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill( NULL)
sql select _wstart, count(c1), count(c2), count(c3), count(c4), count(c5), count(c6), count(c7), count(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(NULL)
G
Ganlin Zhao 已提交
637
if $rows != 9 then
638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667
  return -1
endi
if $data01 != 1 then
  return -1
endi
if $data11 != NULL then
  return -1
endi
if $data21 != 1 then
  return -1
endi
if $data31 != NULL then
  return -1
endi
if $data41 != 1 then
  return -1
endi
if $data51 != NULL then
  return -1
endi
if $data61 != 1 then
  return -1
endi
if $data71 != NULL then
  return -1
endi
if $data81 != 1 then
  return -1
endi
sql select count(c1), count(c2), count(c3), count(c4), count(c5), count(c6), count(c7), count(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(none)
G
Ganlin Zhao 已提交
668
if $rows != 5 then
669 670 671 672
  return -1
endi

# avg_with_fill
S
Shengliang Guan 已提交
673
sql select _wstart, avg(c1), avg(c2), avg(c3), avg(c4), avg(c5) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill( NULL)
G
Ganlin Zhao 已提交
674
if $rows != 9 then
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705
  return -1
endi
if $data01 != 0.000000000 then
  return -1
endi
if $data11 != NULL then
  return -1
endi
if $data21 != 1.000000000 then
  return -1
endi
if $data31 != NULL then
  return -1
endi
if $data41 != 2.000000000 then
  return -1
endi
if $data51 != NULL then
  return -1
endi
if $data61 != 3.000000000 then
  return -1
endi
if $data71 != NULL then
  return -1
endi
if $data81 != 4.000000000 then
  return -1
endi

# max_with_fill
S
Shengliang Guan 已提交
706
sql select _wstart, max(c1), max(c2), max(c3), max(c4), max(c5) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill( NULL)
G
Ganlin Zhao 已提交
707
if $rows != 9 then
708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738
  return -1
endi
if $data01 != 0 then
  return -1
endi
if $data11 != NULL then
  return -1
endi
if $data21 != 1 then
  return -1
endi
if $data31 != NULL then
  return -1
endi
if $data41 != 2 then
  return -1
endi
if $data51 != NULL then
  return -1
endi
if $data61 != 3 then
  return -1
endi
if $data71 != NULL then
  return -1
endi
if $data81 != 4 then
  return -1
endi

# min_with_fill
S
Shengliang Guan 已提交
739
sql select _wstart, min(c1), min(c2), min(c3), min(c4), min(c5) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(NULL)
G
Ganlin Zhao 已提交
740
if $rows != 9 then
741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771
  return -1
endi
if $data01 != 0 then
  return -1
endi
if $data11 != NULL then
  return -1
endi
if $data21 != 1 then
  return -1
endi
if $data31 != NULL then
  return -1
endi
if $data41 != 2 then
  return -1
endi
if $data51 != NULL then
  return -1
endi
if $data61 != 3 then
  return -1
endi
if $data71 != NULL then
  return -1
endi
if $data81 != 4 then
  return -1
endi

# first_with_fill
S
Shengliang Guan 已提交
772
sql select _wstart, first(c1), first(c2), first(c3), first(c4), first(c5), first(c6), first(c7), first(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill( NULL)
G
Ganlin Zhao 已提交
773
if $rows != 9 then
774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804
  return -1
endi
if $data01 != 0 then
  return -1
endi
if $data11 != NULL then
  return -1
endi
if $data21 != 1 then
  return -1
endi
if $data31 != NULL then
  return -1
endi
if $data41 != 2 then
  return -1
endi
if $data51 != NULL then
  return -1
endi
if $data61 != 3 then
  return -1
endi
if $data71 != NULL then
  return -1
endi
if $data81 != 4 then
  return -1
endi

# last_with_fill
S
Shengliang Guan 已提交
805
sql select _wstart, last(c1), last(c2), last(c3), last(c4), last(c5), last(c6), last(c7), last(c8) from $tb where ts >= $ts0 and ts <= $tsu interval(5m) fill(NULL)
G
Ganlin Zhao 已提交
806
if $rows != 9 then
807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838
  return -1
endi
if $data01 != 0 then
  return -1
endi
if $data11 != NULL then
  return -1
endi
if $data21 != 1 then
  return -1
endi
if $data31 != NULL then
  return -1
endi
if $data41 != 2 then
  return -1
endi
if $data51 != NULL then
  return -1
endi
if $data61 != 3 then
  return -1
endi
if $data71 != NULL then
  return -1
endi
if $data81 != 4 then
  return -1
endi

# desc fill query
print desc fill query
S
Shengliang Guan 已提交
839
sql select count(*) from m_fl_tb0 where ts>='2018-9-17 9:0:0' and ts<='2018-9-17 9:11:00' interval(1m) fill(value,10);
840 841 842 843 844 845 846 847
if $rows != 12 then
  return -1
endi


#print =============== clear
#sql drop database $db
#sql show databases
G
Ganlin Zhao 已提交
848
#if $rows != 0 then
849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882
#  return -1
#endi

######################### us ##########################
$start = 1537146000000000      # 2018-09-17 09:00:00.000000
$delta = 600000000

sql create table us_st (ts timestamp, c1 int, c2 double) tags(tgcol int)
sql create table us_t1 using us_st tags( 1 )

sql insert into us_t1 values ('2018-09-17 09:00:00.000001', 1 , 1)
sql insert into us_t1 values ('2018-09-17 09:00:00.000002', 2 , 2)
sql insert into us_t1 values ('2018-09-17 09:00:00.000003', 3 , 3)
sql insert into us_t1 values ('2018-09-17 09:00:00.000004', 4 , 4)
sql insert into us_t1 values ('2018-09-17 09:00:00.000005', 5 , 5)
sql insert into us_t1 values ('2018-09-17 09:00:00.000006', 6 , 6)
sql insert into us_t1 values ('2018-09-17 09:00:00.000007', 7 , 7)
sql insert into us_t1 values ('2018-09-17 09:00:00.000008', 8 , 8)
sql insert into us_t1 values ('2018-09-17 09:00:00.000009', 9 , 9)

sql insert into us_t1 values ('2018-09-17 09:00:00.000015', 15 , 15)
sql insert into us_t1 values ('2018-09-17 09:00:00.000016', 16 , 16)
sql insert into us_t1 values ('2018-09-17 09:00:00.000017', 17 , 17)

sql insert into us_t1 values ('2018-09-17 09:00:00.000021', 21 , 21)
sql insert into us_t1 values ('2018-09-17 09:00:00.000022', 22 , 22)
sql insert into us_t1 values ('2018-09-17 09:00:00.000023', 23 , 23)

sql insert into us_t1 values ('2018-09-17 09:00:00.000027', 27 , 27)
sql insert into us_t1 values ('2018-09-17 09:00:00.000028', 28 , 28)
sql insert into us_t1 values ('2018-09-17 09:00:00.000029', 29 , 29)

print sql select avg(c1), avg(c2) from us_t1 where ts >= '2018-09-17 09:00:00.000002' and ts <= '2018-09-17 09:00:00.000021' interval(3u) fill(value, 999, 999)
sql select avg(c1), avg(c2) from us_t1 where ts >= '2018-09-17 09:00:00.000002' and ts <= '2018-09-17 09:00:00.000021' interval(3u) fill(value, 999, 999)
G
Ganlin Zhao 已提交
883
if $rows != 8 then
884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911
  return -1
endi
if $data01 != 2.000000000 then
  return -1
endi
if $data11 != 4.000000000 then
  return -1
endi
if $data21 != 7.000000000 then
  return -1
endi
if $data31 != 9.000000000 then
  return -1
endi
if $data41 != 999.000000000 then
  return -1
endi
if $data51 != 16.000000000 then
  return -1
endi
if $data61 != 999.000000000 then
  return -1
endi
if $data71 != 21.000000000 then
  return -1
endi

sql select avg(c1), avg(c2) from us_t1 where ts >= '2018-09-17 09:00:00.000002' and ts <= '2018-09-17 09:00:00.000021' interval(3u) fill(none)
G
Ganlin Zhao 已提交
912
if $rows != 6 then
913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934
  return -1
endi
if $data01 != 2.000000000 then
  return -1
endi
if $data11 != 4.000000000 then
  return -1
endi
if $data21 != 7.000000000 then
  return -1
endi
if $data31 != 9.000000000 then
  return -1
endi
if $data41 != 16.000000000 then
  return -1
endi
if $data51 != 21.000000000 then
  return -1
endi

sql select avg(c1), avg(c2) from us_t1 where ts >= '2018-09-17 09:00:00.000002' and ts <= '2018-09-17 09:00:00.000021' interval(3u) fill(null)
G
Ganlin Zhao 已提交
935
if $rows != 8 then
936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967
  return -1
endi
if $data01 != 2.000000000 then
  return -1
endi
if $data11 != 4.000000000 then
  return -1
endi
if $data21 != 7.000000000 then
  return -1
endi
if $data31 != 9.000000000 then
  return -1
endi
if $data41 != NULL then
  print ===== $data41
  return -1
endi
if $data51 != 16.000000000 then
  return -1
endi
if $data61 != NULL then
   print ===== $data61
  return -1
endi
if $data71 != 21.000000000 then
  return -1
endi



sql select avg(c1), avg(c2) from us_t1 where ts >= '2018-09-17 09:00:00.000002' and ts <= '2018-09-17 09:00:00.000021' interval(3u) fill(prev)
G
Ganlin Zhao 已提交
968
if $rows != 8 then
969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995
  return -1
endi
if $data01 != 2.000000000 then
  return -1
endi
if $data11 != 4.000000000 then
  return -1
endi
if $data21 != 7.000000000 then
  return -1
endi
if $data31 != 9.000000000 then
  return -1
endi
if $data41 != 9.000000000 then
  return -1
endi
if $data51 != 16.000000000 then
  return -1
endi
if $data61 != 16.000000000 then
  return -1
endi
if $data71 != 21.000000000 then
  return -1
endi

S
Shengliang Guan 已提交
996
sql select _wstart, avg(c1), avg(c2) from us_t1 where ts >= '2018-09-17 09:00:00.000002' and ts <= '2018-09-17 09:00:00.000021' interval(3u) fill(linear)
G
Ganlin Zhao 已提交
997
if $rows != 8 then
998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024
  return -1
endi
if $data01 != 2.000000000 then
  return -1
endi
if $data11 != 4.000000000 then
  return -1
endi
if $data21 != 7.000000000 then
  return -1
endi
if $data31 != 9.000000000 then
  return -1
endi
if $data41 != 12.500000000 then
  return -1
endi
if $data51 != 16.000000000 then
  return -1
endi
if $data61 != 18.500000000 then
  return -1
endi
if $data71 != 21.000000000 then
  return -1
endi

G
Ganlin Zhao 已提交
1025
print ======== fill_us.sim run end...... ================