constCol.sim 6.9 KB
Newer Older
S
slguan 已提交
1
system sh/stop_dnodes.sh
S
slguan 已提交
2 3

system sh/deploy.sh -n dnode1 -i 1
H
hjxilinx 已提交
4
system sh/cfg.sh -n dnode1 -c walLevel       -v 0
S
slguan 已提交
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

system sh/cfg.sh -n dnode1 -c dDebugFlag       -v 135
system sh/cfg.sh -n dnode1 -c mDebugFlag       -v 135
system sh/cfg.sh -n dnode1 -c sdbDebugFlag     -v 135
system sh/cfg.sh -n dnode1 -c rpcDebugFlag    -v 135
system sh/cfg.sh -n dnode1 -c cDebugFlag       -v 135
system sh/cfg.sh -n dnode1 -c monitorDebugflag -v 135
system sh/cfg.sh -n dnode1 -c httpDebugFlag    -v 135
system sh/cfg.sh -n dnode1 -c uDebugFlag       -v 135

system sh/cfg.sh -n dnode1 -c httpCacheSessions  -v 10
system sh/cfg.sh -n dnode1 -c httpMaxThreads     -v 10
system sh/cfg.sh -n dnode1 -c httpEnableCompress -v 0

system sh/cfg.sh -n dnode1 -c maxVnodeConnections -v 30000
system sh/cfg.sh -n dnode1 -c maxMgmtConnections -v 30000
system sh/cfg.sh -n dnode1 -c maxMeterConnections -v 30000
system sh/cfg.sh -n dnode1 -c maxShellConns       -v 30000

system sh/exec.sh -n dnode1 -s start
sql connect

sql create database db;
sql use db;
sql create table t (ts timestamp, i int);
sql create table st1 (ts timestamp, f1 int) tags(t1 int);
sql create table st2 (ts timestamp, f2 int) tags(t2 int);

sql create table t1 using st1 tags(1);
sql create table t2 using st2 tags(1);

sql insert into t1 values(1575880055000, 1);
H
Haojun Liao 已提交
37 38 39
sql insert into t1 values(1575880059000, 1);
sql insert into t1 values(1575880069000, 1);

S
slguan 已提交
40 41 42 43
sql insert into t2 values(1575880055000, 2);

sql select st1.ts, st1.f1, st2.f2 from db.st1, db.st2 where st1.t1=st2.t2 and st1.ts=st2.ts

44
system_content curl -H 'Authorization: Taosd /KfeAzX/f9na8qdtNZmtONryp201ma04bEl8LcvLUd7a8qdtNZmtONryp201ma04' -d 'select st1.ts, st1.f1, st2.f2 from db.st1, db.st2 where st1.t1=st2.t2 and st1.ts=st2.ts'  127.0.0.1:7111/restful/sql
S
slguan 已提交
45

46 47
print ==============select with user-defined columns
sql select 'abc' as f, ts,f1 from t1
H
Haojun Liao 已提交
48
if $rows != 3 then
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
  return -1
endi

if $data00 != @abc@ then
  return -1
endi

if $data01 != @19-12-09 16:27:35.000@ then
  return -1
endi

if $data02 != 1 then
  return -1
endi

sql select 'abc', ts, f1 from t1
H
Haojun Liao 已提交
65
if $rows != 3 then
66 67 68 69 70 71 72 73 74 75 76
  return -1
endi

if $data01 != @19-12-09 16:27:35.000@ then
  return -1
endi

if $data02 != 1 then
  return -1
endi

H
Haojun Liao 已提交
77 78 79 80
if $data10 != @abc@ then
  return -1
endi

81
sql select 'abc' from t1
H
Haojun Liao 已提交
82
if $rows != 3 then
83 84 85 86 87 88 89 90
  return -1
endi

if $data00 != @abc@ then
  return -1
endi

sql select 'abc' as f1 from t1
H
Haojun Liao 已提交
91
if $rows != 3 then
92 93 94 95 96 97 98 99
  return -1
endi

if $data00 != @abc@ then
  return -1
endi

sql select 1 from t1
H
Haojun Liao 已提交
100
if $rows != 3 then
101 102 103 104 105 106 107
  return -1
endi

if $data00 != 1 then
  return -1
endi

H
Haojun Liao 已提交
108 109 110 111 112 113 114 115
if $data10 != 1 then
  return -1
endi

if $data20 != 1 then
  return -1
endi

116
sql select 1 as f1 from t1
H
Haojun Liao 已提交
117
if $rows != 3 then
118 119 120 121 122 123 124 125
  return -1
endi

if $data00 != 1 then
  return -1
endi

sql select 1 as f, f1 from t1
H
Haojun Liao 已提交
126
if $rows != 3 then
127 128 129 130 131 132 133 134 135 136 137 138
  return -1
endi

if $data00 != 1 then
  return -1
endi

if $data01 != 1 then
  return -1
endi

sql select 1.123 as f, f1 from t1
H
Haojun Liao 已提交
139
if $rows != 3 then
140 141 142 143 144 145 146 147
  return -1
endi

if $data00 != 1.123000000 then
  print expect 1.123000000 , actual:$data00
  return -1
endi

H
Haojun Liao 已提交
148 149 150 151 152
if $data10 != 1.123000000 then
  print expect 1.123000000 , actual:$data10
  return -1
endi

153
sql select 1, f1 from t1
H
Haojun Liao 已提交
154
if $rows != 3 then
155 156 157 158 159 160 161 162 163 164 165
  return -1
endi

if $data00 != 1 then
  return -1
endi

if $data01 != 1 then
  return -1
endi

H
Haojun Liao 已提交
166 167 168 169
if $data10 != 1 then
  return -1
endi

170
sql select 1.2391, f1 from t1
H
Haojun Liao 已提交
171
if $rows != 3 then
172 173 174 175 176 177 178 179
  return -1
endi

if $data00 != 1.239100000 then
  print expect 1.239100000 actual: $data00
  return -1
endi

H
Haojun Liao 已提交
180 181 182 183 184
if $data10 != 1.239100000 then
  print expect 1.239100000 actual: $data00
  return -1
endi

185 186 187 188 189 190 191 192 193 194 195 196 197 198
if $data01 != 1 then
  return -1
endi

print ===================== user-defined columns with agg functions
sql select 1 as t, count(*) from t1
if $rows != 1 then
 return -1
endi

if $data00 != 1 then
  return -1
endi

H
Haojun Liao 已提交
199
if $data01 != 3 then
200 201 202 203 204 205 206 207 208 209 210 211
  return -1
endi

sql select 1, sum(f1) from t1
if $rows != 1 then
 return -1
endi

if $data00 != 1 then
  return -1
endi

H
Haojun Liao 已提交
212
if $data01 != 3 then
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
  return -1
endi

sql select 1,2,3, sum(f1)*99, 4,5,6,7,8,9,10 from t1
if $rows != 1 then
 return -1
endi

if $data00 != 1 then
  return -1
endi

if $data01 != 2 then
  return -1
endi

if $data02 != 3 then
  return -1
endi

H
Haojun Liao 已提交
233 234
if $data03 != 297.000000000  then
  print expect 297.000000000, actual:$data03
235 236 237 238 239 240 241 242
  return -1
endi

sql select sum(f1)*avg(f1)+12, 1,2,3,4,5,6,7,8,9,10 from t1
if $rows != 1 then
 return -1
endi

H
Haojun Liao 已提交
243 244
if $data00 != 15.000000000 then
  print expect 15.000000000 actual:$data00
245 246 247 248 249 250 251 252 253 254 255 256
  return -1
endi

if $data01 != 1 then
  return -1
endi

if $data02 != 2 then
  return -1
endi

sql select 1.2987, f1, 'k' from t1 where f1=1
H
Haojun Liao 已提交
257
if $rows != 3 then
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
  return -1
endi

if $data00 != 1.298700000 then
  print expect 1.298700000 actual:$data00
  return -1
endi

if $data01 != 1 then
  return -1
endi

if $data02 != @k@ then
  return -1
endi

print ====================user-defined columns with union
sql select f1, 'f1' from t1 union all select f1, 'f1' from t1;
H
Haojun Liao 已提交
276
if $rows != 6 then
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 312 313 314 315 316 317 318 319 320 321 322 323 324 325
  return -1
endi

if $data00 != 1 then
  return -1
endi

if $data01 != @f1@ then
  return -1
endi

if $data10 != 1 then
  return -1
endi

if $data11 != @f1@ then
  return -1
endi

print =====================udc with join
sql select st1.ts, st1.f1, st2.f2, 'abc', 1.9827 from db.st1, db.st2 where st1.t1=st2.t2 and st1.ts=st2.ts
if $rows != 1 then
  return -1
endi

if $data00 != @19-12-09 16:27:35.000@ then
  print expect @19-12-09 16:27:35.000@ actual:$data00
  return -1
endi

if $data01 != 1 then
  return -1
endi

if $data02 != 2 then
  return -1
endi

if $data03 != @abc@ then
  return -1
endi

if $data04 != 1.982700000 then
  print expect 1.982700000 actual:$data04
  return -1
endi

print ======================udc with interval
sql select count(*), 'uuu' from t1 interval(1s) order by ts desc;
H
Haojun Liao 已提交
326
if $rows != 3 then
327 328 329 330 331 332 333 334 335
  return -1
endi

print ======================udc with tags
sql select t1,'abc',tbname from st1
if $rows != 1 then
  return -1
endi

H
Haojun Liao 已提交
336 337 338 339 340 341 342 343
if $data01 != @abc@ then
  return -1
endi

if $data02 != @t1@ then
  return -1
endi

344 345
print ======================udc with arithmetic
sql select 1+1 from t1
H
Haojun Liao 已提交
346
if $rows != 3 then
347 348 349
  return -1
endi

H
Haojun Liao 已提交
350 351 352 353 354 355 356 357 358 359 360
sql select 0.1 + 0.2 from t1
if $rows != 3 then
  return -1
endi

print =============================> td-2036
if $data00 != 0.3000000 then
  print expect: 0.3000000, actual:$data00
  return -1
endi

H
Haojun Liao 已提交
361 362
print ======================udc with normal column group by

363 364 365
sql_error select from t1
sql_error select abc from t1
sql_error select abc as tu from t1
H
Haojun Liao 已提交
366 367

print ========================> td-1756
H
Haojun Liao 已提交
368 369
sql_error select * from t1 where ts>now-1y
sql_error select * from t1 where ts>now-1n
370

H
Haojun Liao 已提交
371
print ========================> td-1752
H
Haojun Liao 已提交
372
sql select * from db.st2 where t2 < 200 and t2 is not null;
H
Haojun Liao 已提交
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
if $rows != 1 then
  return -1
endi

if $data00 != @19-12-09 16:27:35.000@ then
  return -1
endi

if $data01 != 2 then
  return -1
endi

if $data02 != 1 then
  return -1
endi

H
Haojun Liao 已提交
389
sql select * from db.st2 where t2 > 200 or t2 is null;
H
Haojun Liao 已提交
390 391 392 393 394 395 396 397 398
if $rows != 0 then
  return -1
endi

sql select * from st2 where t2 < 200 and t2 is null;
if $rows != 0 then
  return -1
endi

S
slguan 已提交
399
system sh/exec.sh -n dnode1 -s stop -x SIGINT