diff2.sim 3.2 KB
Newer Older
1 2
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
S
Shengliang Guan 已提交
3
system sh/cfg.sh -n dnode1 -c debugflag -v 131
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
system sh/exec.sh -n dnode1 -s start
sql connect

$dbPrefix = m_di_db
$tbPrefix = m_di_tb
$mtPrefix = m_di_mt
$tbNum = 2
$rowNum = 10000
$totalNum = 20000

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, c1 int, c2 float, c3 bigint, c4 smallint, c5 tinyint, c6 double, c7 bool, c8 nchar(5), c9 binary(10)) TAGS(tgcol int)

$i = 0
while $i < $tbNum
  $tb = $tbPrefix . $i
  sql create table $tb using $mt tags( $i )
  
  $x = 0
  while $x < $rowNum
    $cc = $x * 60000
    $ms = 1601481600000 + $cc

    $tinyint = $x / 128
    sql insert into $tb values ($ms , $x , $x , $x , $x , $tinyint , $x , $x , $x , $x ) 
    $x = $x + 1
  endw 
 
  $i = $i + 1
endw 

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

sql select diff(c1) from $tb
S
Shengliang Guan 已提交
48 49
print ===> $data10
if $data10 != 1 then 
50 51 52
  return -1
endi
sql select diff(c2) from $tb
S
Shengliang Guan 已提交
53 54
print ===> $data10
if $data10 != 1.000000000 then
55 56 57
  return -1
endi
sql select diff(c3) from $tb
S
Shengliang Guan 已提交
58 59
print ===> $data10
if $data10 != 1 then 
60 61 62
  return -1
endi
sql select diff(c4) from $tb
S
Shengliang Guan 已提交
63 64
print ===> $data10
if $data10 != 1 then 
65 66 67
  return -1
endi
sql select diff(c5) from $tb
S
Shengliang Guan 已提交
68 69
print ===> $data10
if $data10 != 0 then 
70 71 72
  return -1
endi
sql select diff(c6) from $tb
S
Shengliang Guan 已提交
73 74
print ===> $data10
if $data10 != 1.000000000 then 
75 76
  return -1
endi
S
Shengliang Guan 已提交
77 78

sql select diff(c7) from $tb
79 80 81
sql_error select diff(c8) from $tb
sql_error select diff(c9) from $tb
sql_error select diff(ts) from $tb
82
sql select diff(c1), diff(c2) from $tb
S
Shengliang Guan 已提交
83 84 85

sql select 2+diff(c1) from $tb
sql select diff(c1+2) from $tb
86
sql_error select diff(c1) from $tb where ts > 0 and ts < now + 100m interval(10m)
S
Shengliang Guan 已提交
87
sql select diff(c1) from $mt
88 89 90 91 92
sql_error select diff(diff(c1)) from $tb
sql_error select diff(c1) from m_di_tb1 where c2 like '2%'

print =============== step3
sql select diff(c1) from $tb where c1 > 5
S
Shengliang Guan 已提交
93 94
print ===> $data10
if $data10 != 1 then 
95 96 97
  return -1
endi
sql select diff(c2) from $tb where c2 > 5
S
Shengliang Guan 已提交
98 99
print ===> $data10
if $data10 != 1.000000000 then
100 101 102
  return -1
endi
sql select diff(c3) from $tb where c3 > 5
S
Shengliang Guan 已提交
103 104
print ===> $data10
if $data10 != 1 then 
105 106 107
  return -1
endi
sql select diff(c4) from $tb where c4 > 5
S
Shengliang Guan 已提交
108 109
print ===> $data10
if $data10 != 1 then 
110 111 112
  return -1
endi
sql select diff(c5) from $tb where c5 > 5
S
Shengliang Guan 已提交
113 114
print ===> $data10
if $data10 != 0 then 
115 116 117
  return -1
endi
sql select diff(c6) from $tb where c6 > 5
S
Shengliang Guan 已提交
118 119
print ===> $data10
if $data10 != 1.000000000 then 
120 121 122 123 124
  return -1
endi

print =============== step4
sql select diff(c1) from $tb where c1 > 5 and c2 < $rowNum
S
Shengliang Guan 已提交
125 126
print ===> $data10
if $data10 != 1 then 
127 128 129 130 131 132 133
  return -1
endi

sql select diff(c1) from $tb where c9 like '%9' and c1 <= 20
if $rows != 1 then 
  return -1
endi
S
Shengliang Guan 已提交
134 135
print ===> $data10
if $data00 != 10 then 
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
  return -1
endi

print =============== step5
sql select diff(c1) as b from $tb interval(1m) -x step5
  return -1
step5:

print =============== step6
sql select diff(c1) as b from $tb where ts < now + 4m interval(1m) -x step6
  return -1
step6:

print =============== clear
#sql drop database $db
#sql show databases
S
Shengliang Guan 已提交
152
#if $rows != 2 then 
153 154 155 156
#  return -1
#endi

system sh/exec.sh -n dnode1 -s stop -x SIGINT