null.sim 4.0 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 = db
$tbPrefix = tb
$mtPrefix = 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, tbcol2 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
  $x = 0
  while $x < $rowNum
    $cc = $x * 60000
    $ms = 1601481600000 + $cc
G
Ganlin Zhao 已提交
33 34

    $v1 = $x
35 36 37 38
    $v2 = $x
    if $x == 0 then
      $v1 = NULL
    endi
G
Ganlin Zhao 已提交
39 40

    sql insert into $tb values ($ms , $v1 , $v2 )
41
    $x = $x + 1
G
Ganlin Zhao 已提交
42 43
  endw

44
  $i = $i + 1
G
Ganlin Zhao 已提交
45
endw
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63

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

sql select * from $tb
print $data00 $data01 $data02
if $data01 != NULL then
  return -1
endi
if $data02 != 0 then
  return -1
endi
if $rows != 20 then
  return -1
endi

print =============== step3
G
Ganlin Zhao 已提交
64 65 66
sql select count(tbcol), count(tbcol2), avg(tbcol), avg(tbcol2), sum(tbcol), sum(tbcol2) from $tb
print ===> $data00 $data01 $data02 $data03 $data04 $data05
if $data00 != 19 then
67 68
  return -1
endi
G
Ganlin Zhao 已提交
69
if $data01 != 20 then
70 71
  return -1
endi
G
Ganlin Zhao 已提交
72
if $data02 != 10.000000000 then
73 74
  return -1
endi
G
Ganlin Zhao 已提交
75
if $data03 != 9.500000000 then
76 77
  return -1
endi
G
Ganlin Zhao 已提交
78
if $data04 != 190 then
79 80
  return -1
endi
G
Ganlin Zhao 已提交
81
if $data05 != 190 then
82 83 84 85 86 87
  return -1
endi

print =============== step4
sql select * from $tb  where tbcol2 = 19
print ===> $data01 $data02
G
Ganlin Zhao 已提交
88
if $rows != 1 then
89 90
  return -1
endi
G
Ganlin Zhao 已提交
91
if $data01 != 19 then
92 93
  return -1
endi
G
Ganlin Zhao 已提交
94
if $data02 != 19 then
95 96 97
  return -1
endi

G
Ganlin Zhao 已提交
98 99
sql select * from $tb  where tbcol is NULL
if $rows != 1 then
100
  return -1
S
Shengliang Guan 已提交
101 102
endi

G
Ganlin Zhao 已提交
103 104
sql select * from $tb  where tbcol = NULL
if $rows != 0 then
S
Shengliang Guan 已提交
105 106
  return -1
endi
107 108

print =============== step5
S
Shengliang Guan 已提交
109
sql create table tt using $mt tags( NULL )
110 111 112 113 114

#sql alter table $tb set tgcol=NULL -x step52
#  return -1
#step52:

S
Shengliang Guan 已提交
115
sql select * from $mt  where tgcol is NULL
G
Ganlin Zhao 已提交
116
if $rows != 0 then
117
  return -1
S
Shengliang Guan 已提交
118
endi
119 120

print =============== step6
G
Ganlin Zhao 已提交
121 122 123
sql select count(tbcol), count(tbcol2), avg(tbcol), avg(tbcol2), sum(tbcol), sum(tbcol2) from $mt
print ===> $data00 $data01 $data02 $data03 $data04 $data05
if $data00 != 190 then
124 125
  return -1
endi
G
Ganlin Zhao 已提交
126
if $data01 != 200 then
127 128
  return -1
endi
G
Ganlin Zhao 已提交
129
if $data02 != 10.000000000 then
130 131
  return -1
endi
G
Ganlin Zhao 已提交
132
if $data03 != 9.500000000 then
133 134
  return -1
endi
G
Ganlin Zhao 已提交
135
if $data04 != 1900 then
136 137
  return -1
endi
G
Ganlin Zhao 已提交
138
if $data05 != 1900 then
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
  return -1
endi

print =============== step7
sql create table t1 (ts timestamp, i bool)
sql create table t2 (ts timestamp, i smallint)
sql create table t3 (ts timestamp, i tinyint)
sql create table t4 (ts timestamp, i int)
sql create table t5 (ts timestamp, i bigint)
sql create table t6 (ts timestamp, i float)
sql create table t7 (ts timestamp, i double)
sql create table t8 (ts timestamp, i binary(10))
sql insert into t1 values(now, NULL)
sql insert into t2 values(now, NULL)
sql insert into t3 values(now, NULL)
sql insert into t4 values(now, NULL)
sql insert into t5 values(now, NULL)
sql insert into t6 values(now, NULL)
sql insert into t7 values(now, NULL)
#sql insert into t8 values(now, NULL)

#sql select * from t1
G
Ganlin Zhao 已提交
161
#if $rows != 1 then
162 163
#  return -1
#endi
G
Ganlin Zhao 已提交
164
#if $data01 != NULL then
165 166 167 168
#  return -1
#endi

sql select * from t2
G
Ganlin Zhao 已提交
169
if $rows != 1 then
170 171 172 173 174 175 176
  return -1
endi
if $data01 != NULL then
  return -1
endi

sql select * from t3
G
Ganlin Zhao 已提交
177
if $rows != 1 then
178 179 180 181 182 183 184
  return -1
endi
if $data01 != NULL then
  return -1
endi

sql select * from t4
G
Ganlin Zhao 已提交
185
if $rows != 1 then
186 187 188 189 190 191 192
  return -1
endi
if $data01 != NULL then
  return -1
endi

sql select * from t5
G
Ganlin Zhao 已提交
193
if $rows != 1 then
194 195 196 197 198 199 200
  return -1
endi
if $data01 != NULL then
  return -1
endi

sql select * from t6
G
Ganlin Zhao 已提交
201
if $rows != 1 then
202 203 204 205 206 207 208
  return -1
endi
if $data01 != NULL then
  return -1
endi

sql select * from t7
G
Ganlin Zhao 已提交
209
if $rows != 1 then
210 211 212 213 214 215 216
  return -1
endi
if $data01 != NULL then
  return -1
endi

#sql select * from t8
G
Ganlin Zhao 已提交
217
#if $rows != 1 then
218 219 220 221 222 223 224 225
#  return -1
#endi
#if $data01 != NULL then
#  return -1
#endi

print =============== clear
sql drop database $db
X
Xiaoyu Wang 已提交
226
sql select * from information_schema.ins_databases
G
Ganlin Zhao 已提交
227
if $rows != 2 then
228 229 230
  return -1
endi

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