constCol.sim 6.2 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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 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 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
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);
sql insert into t1 values(1575880059000, 1);
sql insert into t1 values(1575880069000, 1);

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

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

print ==============select with user-defined columns
sql select 'abc' as f, ts,f1 from t1
if $rows != 3 then
  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
if $rows != 3 then
  return -1
endi

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

if $data02 != 1 then
  return -1
endi

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

sql select 'abc' from t1
if $rows != 3 then
  return -1
endi

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

sql select 'abc' as f1 from t1
if $rows != 3 then
  return -1
endi

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

sql select 1 from t1
if $rows != 3 then
  return -1
endi

if $data00 != 1 then
  return -1
endi

if $data10 != 1 then
  return -1
endi

if $data20 != 1 then
  return -1
endi

sql select 1 as f1 from t1
if $rows != 3 then
  return -1
endi

if $data00 != 1 then
  return -1
endi

sql select 1 as f, f1 from t1
if $rows != 3 then
  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
if $rows != 3 then
  return -1
endi

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

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

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

if $data00 != 1 then
  return -1
endi

if $data01 != 1 then
  return -1
endi

if $data10 != 1 then
  return -1
endi

sql select 1.2391, f1 from t1
if $rows != 3 then
  return -1
endi

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

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

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

if $data01 != 3 then
  return -1
endi

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

if $data00 != 1 then
  return -1
endi

if $data01 != 3 then
  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

if $data03 != 297.000000000  then
  print expect 297.000000000, actual:$data03
  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

if $data00 != 15.000000000 then
  print expect 15.000000000 actual:$data00
  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
if $rows != 3 then
  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;
if $rows != 6 then
  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;
if $rows != 3 then
  return -1
endi

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

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

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

print ======================udc with arithmetic
sql select 1+1 from t1
if $rows != 3 then
  return -1
endi

sql select 0.1 + 0.2 from t1
if $rows != 3 then
  return -1
endi

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

print =============================> td-3996
sql select 'abc' as res from t1 where f1 < 0
if $rows != 0 then
  return -1
endi


print ======================udc with normal column group by

sql_error select from t1
sql_error select abc from t1
sql_error select abc as tu from t1

print ========================> td-1756
sql_error select * from t1 where ts>now-1y
sql_error select * from t1 where ts>now-1n

print ========================> td-1752
sql select * from db.st2 where t2 < 200 and t2 is not null;
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

sql select * from db.st2 where t2 > 200 or t2 is null;
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

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