stddev.sim 1.8 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
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_st_db
$tbPrefix = m_st_tb
$mtPrefix = m_st_mt
$tbNum = 10
$rowNum = 20
$totalNum = 200

print =============== step1
$i = 0
$db = $dbPrefix . $i
$mt = $mtPrefix . $i

sql drop database $db -x step1
step1:
sql create database $db
sql use $db
sql create table $mt (ts timestamp, tbcol int) TAGS(tgcol int)

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

29 30 31 32 33
  $x = 0
  while $x < $rowNum
    $cc = $x * 60000
    $ms = 1601481600000 + $cc

G
Ganlin Zhao 已提交
34
    sql insert into $tb values ($ms , $x )
35
    $x = $x + 1
G
Ganlin Zhao 已提交
36 37
  endw

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

print =============== step2
$i = 1
$tb = $tbPrefix . $i

sql select stddev(tbcol) from $tb
print ===> $data00
G
Ganlin Zhao 已提交
47
if $data00 != 5.766281297 then
48 49 50 51 52 53 54 55 56
  return -1
endi

print =============== step3
$cc = 4 * 60000
$ms = 1601481600000 + $cc

sql select stddev(tbcol) from $tb where ts <= $ms
print ===> $data00
G
Ganlin Zhao 已提交
57
if $data00 != 1.414213562 then
58 59 60 61 62 63
  return -1
endi

print =============== step4
sql select stddev(tbcol) as b from $tb
print ===> $data00
G
Ganlin Zhao 已提交
64
if $data00 != 5.766281297 then
65 66 67 68 69
  return -1
endi

print =============== step5
sql select stddev(tbcol) as b from $tb interval(1m)
G
Ganlin Zhao 已提交
70 71
print ===> $data00
if $data00 != 0.000000000 then
72 73 74 75
  return -1
endi

sql select stddev(tbcol) as b from $tb interval(1d)
S
Shengliang Guan 已提交
76
print ===> $data00
G
Ganlin Zhao 已提交
77
if $data00 != 5.766281297 then
78 79 80 81 82 83 84 85
  return -1
endi

print =============== step6
$cc = 4 * 60000
$ms = 1601481600000 + $cc

sql select stddev(tbcol) as b from $tb where ts <= $ms interval(1m)
S
Shengliang Guan 已提交
86
print ===> $data00
G
Ganlin Zhao 已提交
87
if $data00 != 0.000000000 then
88 89
  return -1
endi
G
Ganlin Zhao 已提交
90
if $rows != 5 then
91 92 93 94 95
  return -1
endi

print =============== clear
sql drop database $db
X
Xiaoyu Wang 已提交
96
sql select * from information_schema.ins_databases
G
Ganlin Zhao 已提交
97
if $rows != 2 then
98 99 100
  return -1
endi

G
Ganlin Zhao 已提交
101
system sh/exec.sh -n dnode1 -s stop -x SIGINT