columnValue_float.sim 17.8 KB
Newer Older
S
Shengliang Guan 已提交
1 2 3
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
system sh/exec.sh -n dnode1 -s start
4
sql connect
S
Shengliang Guan 已提交
5 6 7 8 9

print ========== columnValues.sim

sql drop database if exists db
sql create database db
10 11 12 13 14 15 16 17 18 19
sql use db

#### test the value of all data types in four cases: static create table, insert column value, synamic create table, alter tag value

######## case 0: float
print ========== float 
sql create table mt_float (ts timestamp, c float) tags (tagname float)

## case 00: static create table for test tag values
sql create table st_float_0  using mt_float tags (NULL)
S
Shengliang Guan 已提交
20 21
sql show tags from  st_float_0
if $data05 != NULL then
22 23 24
  return -1
endi
sql create table st_float_1  using mt_float tags (NULL)
S
Shengliang Guan 已提交
25 26
sql show tags from  st_float_1
if $data05 != NULL then
27 28 29
  return -1
endi
sql create table st_float_2  using mt_float tags ('NULL')
S
Shengliang Guan 已提交
30 31
sql show tags from  st_float_2
if $data05 != 0.00000 then
32 33 34
  return -1
endi
sql create table st_float_3  using mt_float tags ('NULL')
S
Shengliang Guan 已提交
35 36
sql show tags from  st_float_3
if $data05 != 0.00000 then
37 38 39
  return -1
endi
sql create table st_float_4  using mt_float tags ("NULL")
S
Shengliang Guan 已提交
40 41
sql show tags from  st_float_4
if $data05 != 0.00000 then
42 43 44
  return -1
endi
sql create table st_float_5  using mt_float tags ("NULL")
S
Shengliang Guan 已提交
45 46
sql show tags from  st_float_5
if $data05 != 0.00000 then
47 48 49
  return -1
endi
sql create table st_float_6  using mt_float tags (-123.321)
S
Shengliang Guan 已提交
50 51 52
sql show tags from  st_float_6
if $data05 != -123.32100 then
  print expect -123.32100, actual: $data05
53 54 55
  return -1
endi
sql create table st_float_7  using mt_float tags (+1.567)
S
Shengliang Guan 已提交
56 57 58
sql show tags from  st_float_7
if $data05 != 1.56700 then
  print expect 1.56700, actual: $data05
59 60 61
  return -1
endi
sql create table st_float_8  using mt_float tags (379.001)
S
Shengliang Guan 已提交
62 63 64
sql show tags from  st_float_8
if $data05 != 379.00101 then
  print expect 379.00101, actual: $data05
65 66 67
  return -1
endi
sql create table st_float_9  using mt_float tags (1.5e+3)
S
Shengliang Guan 已提交
68 69 70
sql show tags from  st_float_9
if $data05 != 1500.00000 then
  print expect 1500.00000, actual: $data05
71 72 73
  return -1
endi
sql create table st_float_10 using mt_float tags (-1.5e-3)
S
Shengliang Guan 已提交
74 75 76
sql show tags from  st_float_10
if $data05 != -0.00150 then
  print expect -0.00150, actual: $data05
77 78 79
  return -1
endi
sql create table st_float_11 using mt_float tags (+1.5e+3)
S
Shengliang Guan 已提交
80 81 82
sql show tags from  st_float_11
if $data05 != 1500.00000 then
  print expect 1500.00000, actual: $data05
83 84 85
  return -1
endi
sql create table st_float_12 using mt_float tags (-1.5e+3)
S
Shengliang Guan 已提交
86 87 88
sql show tags from  st_float_12
if $data05 != -1500.00000 then
  print expect -1500.00000, actual: $data05
89 90 91
  return -1
endi
sql create table st_float_13 using mt_float tags (1.5e-3)
S
Shengliang Guan 已提交
92 93 94
sql show tags from  st_float_13
if $data05 != 0.00150 then
  print expect 0.00150, actual: $data05
95 96 97
  return -1
endi
sql create table st_float_14 using mt_float tags (1.5E-3)
S
Shengliang Guan 已提交
98 99 100
sql show tags from  st_float_14
if $data05 != 0.00150 then
  print expect 0.00150, actual: $data05
101 102 103 104
  return -1
endi

sql create table st_float_6_0  using mt_float tags ('-123.321')
S
Shengliang Guan 已提交
105 106 107
sql show tags from  st_float_6_0
if $data05 != -123.32100 then
  print expect -123.32100, actual: $data05
108 109 110
  return -1
endi
sql create table st_float_7_0  using mt_float tags ('+1.567')
S
Shengliang Guan 已提交
111 112 113
sql show tags from  st_float_7_0
if $data05 != 1.56700 then
  print expect 1.56700, actual: $data05
114 115 116
  return -1
endi
sql create table st_float_8_0  using mt_float tags ('379.001')
S
Shengliang Guan 已提交
117 118 119
sql show tags from  st_float_8_0
if $data05 != 379.00101 then
  print expect 379.00101, actual: $data05
120 121 122
  return -1
endi
sql create table st_float_9_0  using mt_float tags ('1.5e+3')
S
Shengliang Guan 已提交
123 124 125
sql show tags from  st_float_9_0
if $data05 != 1500.00000 then
  print expect 1500.00000, actual: $data05
126 127 128
  return -1
endi
sql create table st_float_10_0 using mt_float tags ('-1.5e-3')
S
Shengliang Guan 已提交
129 130 131
sql show tags from  st_float_10_0
if $data05 != -0.00150 then
  print expect -0.00150, actual: $data05
132 133 134
  return -1
endi
sql create table st_float_11_0 using mt_float tags ('+1.5e+3')
S
Shengliang Guan 已提交
135 136 137
sql show tags from  st_float_11_0
if $data05 != 1500.00000 then
  print expect 1500.00000, actual: $data05
138 139 140
  return -1
endi
sql create table st_float_12_0 using mt_float tags ('-1.5e+3')
S
Shengliang Guan 已提交
141 142 143
sql show tags from  st_float_12_0
if $data05 != -1500.00000 then
  print expect -1500.00000, actual: $data05
144 145 146
  return -1
endi
sql create table st_float_13_0 using mt_float tags ('1.5e-3')
S
Shengliang Guan 已提交
147 148 149
sql show tags from  st_float_13_0
if $data05 != 0.00150 then
  print expect 0.00150, actual: $data05
150 151 152
  return -1
endi
sql create table st_float_14_0 using mt_float tags ('1.5E-3')
S
Shengliang Guan 已提交
153 154 155
sql show tags from  st_float_14_0
if $data05 != 0.00150 then
  print expect 0.00150, actual: $data05
156 157 158
  return -1
endi
#sql create table st_float_15_0 using mt_float tags (3.40282347e+38)
S
Shengliang Guan 已提交
159 160
#sql show tags from  st_float_15_0
#if $data05 != 0.001500 then
161 162 163
#  return -1
#endi
#sql create table st_float_16_0 using mt_float tags (-3.40282347e+38)
S
Shengliang Guan 已提交
164 165
#sql show tags from  st_float_16_0
#if $data05 != 0.001500 then
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
#  return -1
#endi

## case 01: insert values  for test column values
sql insert into st_float_0  values (now, NULL)
sql select * from st_float_0
if $rows != 1 then
  return -1
endi
if $data01 != NULL then
  return -1
endi 
sql insert into st_float_1  values (now, NULL)
sql select * from st_float_1
if $rows != 1 then
  return -1
endi
if $data01 != NULL then
  return -1
endi  
sql insert into st_float_2  values (now, 'NULL')
sql select * from st_float_2
if $rows != 1 then
  return -1
endi
if $data01 != NULL then
  return -1
endi
sql insert into st_float_3  values (now, 'NULL')
sql select * from st_float_3
if $rows != 1 then
  return -1
endi
if $data01 != NULL then
  return -1
endi
sql insert into st_float_4  values (now, "NULL")
sql select * from st_float_4
if $rows != 1 then
  return -1
endi
if $data01 != NULL then
  return -1
endi
sql insert into st_float_5  values (now, "NULL")
sql select * from st_float_5
if $rows != 1 then
  return -1
endi
if $data01 != NULL then
  return -1
endi

sql_error insert into st_float_6  values (now, 3.40282347e+38)
sql_error insert into st_float_6  values (now, -3.40282347e+38)

sql insert into st_float_6 values(now, 340282346638528859811704183484516925440.00000)
sql select * from st_float_6
if $rows != 1 then
  return -1
endi

if $data01 != 340282346638528859811704183484516925440.00000 then
  print ==== data01:$data01, expect:340282346638528859811704183484516925440.00000
  return -1
endi
sql insert into st_float_7  values (now, -340282346638528859811704183484516925440.00000)
sql select * from st_float_7
if $rows != 1 then
  return -1
endi
if $data01 != -340282346638528859811704183484516925440.00000 then
  return -1
endi

sql insert into st_float_8  values (now, +100.89) 
sql select * from st_float_8
if $rows != 1 then
  return -1
endi
#if $data01 != 100.89000 then
#  return -1
#endi   
sql insert into st_float_9  values (now, "-0.98")
sql select * from st_float_9
if $rows != 1 then
  return -1
endi
#if $data01 != -0.980000 then
#  return -1
#endi 
sql insert into st_float_10 values (now, '0')
sql select * from st_float_10
if $rows != 1 then
  return -1
endi
#if $data01 != 0.00000 then   # tsim only print 4 bits after dot
#  return -1
#endi 
sql insert into st_float_11 values (now, -0)  
sql select * from st_float_11
if $rows != 1 then
  return -1
endi
#if $data01 != 0.00000 then
#  return -1
#endi 
sql insert into st_float_12 values (now, "+056")
sql select * from st_float_12
if $rows != 1 then
  return -1
endi
#if $data01 != 56.000000 then
#  return -1
#endi 

sql insert into st_float_13 values (now, +056)
sql select * from st_float_13
if $rows != 1 then
  return -1
endi
#if $data01 != 56.000000 then
#  return -1
#endi 

sql insert into st_float_14 values (now, -056)
sql select * from st_float_14
if $rows != 1 then
  return -1
endi
#if $data01 != -56 then
#  return -1
#endi 

## case 02: dynamic create table for test tag values
sql insert into st_float_16 using mt_float tags (NULL)   values (now, NULL)
S
Shengliang Guan 已提交
302 303
sql show tags from  st_float_16
if $data05 != NULL then
304 305 306 307 308 309 310 311
  return -1
endi
sql select * from st_float_16
if $data01 != NULL then
  return -1
endi
    
sql insert into st_float_17 using mt_float tags (NULL)   values (now, NULL)
S
Shengliang Guan 已提交
312 313
sql show tags from  st_float_17
if $data05 != NULL then
314 315 316 317 318 319 320
  return -1
endi
sql select * from st_float_17
if $data01 != NULL then
  return -1
endi  
sql insert into st_float_18 using mt_float tags ('NULL') values (now, 'NULL')
S
Shengliang Guan 已提交
321 322
sql show tags from  st_float_18
if $data05 != NULL then
323 324 325 326 327 328 329
  return -1
endi
sql select * from st_float_18
if $data01 != NULL then
  return -1
endi
sql insert into st_float_19 using mt_float tags ('NULL') values (now, 'NULL')
S
Shengliang Guan 已提交
330 331
sql show tags from  st_float_19
if $data05 != NULL then
332 333 334 335 336 337 338
  return -1
endi
sql select * from st_float_19
if $data01 != NULL then
  return -1
endi
sql insert into st_float_20 using mt_float tags ("NULL") values (now, "NULL")
S
Shengliang Guan 已提交
339 340
sql show tags from  st_float_20
if $data05 != NULL then
341 342 343 344 345 346 347
  return -1
endi
sql select * from st_float_20
if $data01 != NULL then
  return -1
endi
sql insert into st_float_21 using mt_float tags ("NULL") values (now, "NULL")
S
Shengliang Guan 已提交
348 349
sql show tags from  st_float_21
if $data05 != NULL then
350 351 352 353 354 355 356 357 358 359
  return -1
endi
sql select * from st_float_21
if $data01 != NULL then
  return -1
endi

sql_error  insert into st_float_22 using mt_float tags (127)  values (now, 3.40282347e+38)

sql insert into st_float_22 using mt_float tags (127)  values (now, 340282346638528859811704183484516925440.00000)
S
Shengliang Guan 已提交
360 361 362
sql show tags from  st_float_22
if $data05 != 127.00000 then
  print expect 127.00000, actual: $data05
363 364 365 366 367 368 369 370 371
  return -1
endi

sql select tbname, tagname from st_float_22
if $data01 != 127.00000 then
  return -1
endi

sql insert into st_float_23 using mt_float tags (-127)  values (now, -340282346638528859811704183484516925440.00000)
S
Shengliang Guan 已提交
372 373
sql show tags from  st_float_23
if $data05 != -127.00000 then
374 375 376 377
  return -1
endi

sql insert into st_float_24 using mt_float tags (10)    values (now, 10)
S
Shengliang Guan 已提交
378 379
sql show tags from  st_float_24
if $data05 != 10.00000 then
380 381 382 383 384 385 386 387
  return -1
endi
sql select * from st_float_24
if $data01 != 10.00000 then
  return -1
endi

sql insert into st_float_25 using mt_float tags ("-0") values (now, "-0")
S
Shengliang Guan 已提交
388 389 390
sql show tags from  st_float_25
if $data05 != -0.00000 then
  print expect -0.00000, actual: $data05
391 392 393 394 395 396 397
  return -1
endi
sql select * from st_float_25
if $data01 != -0.00000 then
  return -1
endi
sql insert into st_float_26 using mt_float tags ('123') values (now, '12.3')
S
Shengliang Guan 已提交
398 399 400
sql show tags from  st_float_26
if $data05 != 123.00000 then
  print expect 123.00000, actual: $data05
401 402 403 404 405 406 407
  return -1
endi
sql select * from st_float_26
if $data01 != 12.30000 then
  return -1
endi
sql insert into st_float_27 using mt_float tags (+056) values (now, +0005.6)
S
Shengliang Guan 已提交
408 409 410
sql show tags from  st_float_27
if $data05 != 56.00000 then
  print expect 56.00000, actual:$data05
411 412 413 414 415 416 417
  return -1
endi
sql select * from st_float_27
if $data01 != 5.60000 then
  return -1
endi
sql insert into st_float_28 using mt_float tags (-056) values (now, -005.6)
S
Shengliang Guan 已提交
418 419
sql show tags from  st_float_28
if $data05 != -56.00000 then
420 421 422 423 424 425 426 427 428
  return -1
endi
sql select * from st_float_28
if $data01 != -5.60000 then
  return -1
endi

### case 03: alter tag values
sql alter table st_float_0 set tag tagname=340282346638528859811704183484516925440.00000
S
Shengliang Guan 已提交
429 430
sql show tags from st_float_0
if $data05 != 340282346638528859811704183484516925440.00000 then
431 432 433 434
  return -1
endi

sql alter table st_float_0 set tag tagname=-340282346638528859811704183484516925440.00000
S
Shengliang Guan 已提交
435 436
sql show tags from  st_float_0
if $data05 != -340282346638528859811704183484516925440.00000 then
437 438 439
  return -1
endi
sql alter table st_float_0 set tag tagname=+10.340
S
Shengliang Guan 已提交
440 441
sql show tags from  st_float_0
if $data05 != 10.34000 then
442 443 444
  return -1
endi
sql alter table st_float_0 set tag tagname=-33.87
S
Shengliang Guan 已提交
445 446
sql show tags from  st_float_0
if $data05 != -33.87000 then
447 448 449
  return -1
endi
sql alter table st_float_0 set tag tagname='+9.8'
S
Shengliang Guan 已提交
450 451
sql show tags from  st_float_0
if $data05 != 9.80000 then
452 453 454
  return -1
endi
sql alter table st_float_0 set tag tagname='-07.6'
S
Shengliang Guan 已提交
455 456
sql show tags from  st_float_0
if $data05 != -7.60000 then
457 458 459
  return -1
endi
sql alter table st_float_0 set tag tagname=+0012.871
S
Shengliang Guan 已提交
460 461
sql show tags from  st_float_0
if $data05 != 12.87100 then
462 463 464
  return -1
endi
sql alter table st_float_0 set tag tagname=-00063.582
S
Shengliang Guan 已提交
465 466
sql show tags from  st_float_0
if $data05 != -63.58200 then
467 468 469 470 471 472 473 474 475 476 477
  return -1
endi

## case 04: illegal input
sql_error create table st_float_e0 using mt_float tags (3.50282347e+38)
sql_error create table st_float_e0 using mt_float tags (-3.50282347e+38)
sql_error create table st_float_e0 using mt_float tags (333.40282347e+38)
sql_error create table st_float_e0 using mt_float tags (-333.40282347e+38)
#sql_error create table st_float_e0 using mt_float tags (12.80)   truncate integer part
#sql_error create table st_float_e0 using mt_float tags (-11.80)
sql_error create table st_float_e0 using mt_float tags (123abc)  
S
Shengliang Guan 已提交
478
sql create table st_float_e0_1 using mt_float tags ("123abc")
479
sql_error create table st_float_e0 using mt_float tags (abc)     
S
Shengliang Guan 已提交
480 481 482
sql create table st_float_e0_2 using mt_float tags ("abc")   
sql create table st_float_e0_3 using mt_float tags (" ")     
sql create table st_float_e0_4 using mt_float tags ('')      
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508

sql create table st_float_e0  using mt_float tags (123)
sql create table st_float_e1  using mt_float tags (123)
sql create table st_float_e2  using mt_float tags (123)
sql create table st_float_e3  using mt_float tags (123)
sql create table st_float_e4  using mt_float tags (123)
sql create table st_float_e5  using mt_float tags (123)
sql create table st_float_e6  using mt_float tags (123)
sql create table st_float_e7  using mt_float tags (123)
sql create table st_float_e8  using mt_float tags (123)
sql create table st_float_e9  using mt_float tags (123)
sql create table st_float_e10 using mt_float tags (123)
sql create table st_float_e11 using mt_float tags (123)
sql create table st_float_e12 using mt_float tags (123)

sql_error insert into st_float_e0  values (now, 3.50282347e+38)     
sql_error insert into st_float_e1  values (now, -3.50282347e+38)    
sql_error insert into st_float_e2  values (now, 13.40282347e+38)    
sql_error insert into st_float_e3  values (now, -13.40282347e+38)   
#sql_error insert into st_float_e4  values (now, 12.80)   
#sql_error insert into st_float_e5  values (now, -11.80)  
sql_error insert into st_float_e6  values (now, 123abc)  
sql_error insert into st_float_e7  values (now, "123abc")
sql_error insert into st_float_e9  values (now, abc)     
sql_error insert into st_float_e10 values (now, "abc")   
sql_error insert into st_float_e11 values (now, " ")     
S
Shengliang Guan 已提交
509
sql insert into st_float_e12 values (now, '')      
510 511 512 513 514 515 516 517 518 519 520 521

sql_error insert into st_float_e13 using mt_float tags (033) values (now, 3.50282347e+38)     
sql_error insert into st_float_e14 using mt_float tags (033) values (now, -3.50282347e+38)    
sql_error insert into st_float_e15 using mt_float tags (033) values (now, 13.40282347e+38)    
sql_error insert into st_float_e16 using mt_float tags (033) values (now, -13.40282347e+38)   
#sql_error insert into st_float_e17 using mt_float tags (033) values (now, 12.80)   
#sql_error insert into st_float_e18 using mt_float tags (033) values (now, -11.80)  
sql_error insert into st_float_e19 using mt_float tags (033) values (now, 123abc)  
sql_error insert into st_float_e20 using mt_float tags (033) values (now, "123abc")
sql_error insert into st_float_e22 using mt_float tags (033) values (now, abc)     
sql_error insert into st_float_e23 using mt_float tags (033) values (now, "abc")   
sql_error insert into st_float_e24 using mt_float tags (033) values (now, " ")     
S
Shengliang Guan 已提交
522
sql insert into st_float_e25_1 using mt_float tags (033) values (now, '')  
523 524 525 526 527 528 529 530 531 532 533 534

sql_error insert into st_float_e13 using mt_float tags (3.50282347e+38)      values (now, -033)
sql_error insert into st_float_e14 using mt_float tags (-3.50282347e+38)     values (now, -033)
sql_error insert into st_float_e15 using mt_float tags (13.40282347e+38)     values (now, -033)
sql_error insert into st_float_e16 using mt_float tags (-13.40282347e+38)    values (now, -033)
#sql_error insert into st_float_e17 using mt_float tags (12.80)    values (now, -033)
#sql_error insert into st_float_e18 using mt_float tags (-11.80)   values (now, -033)
sql_error insert into st_float_e19 using mt_float tags (123abc)   values (now, -033)
sql_error insert into st_float_e20 using mt_float tags ("123abc") values (now, -033)
sql_error insert into st_float_e22 using mt_float tags (abc)      values (now, -033)
sql_error insert into st_float_e23 using mt_float tags ("abc")    values (now, -033)
sql_error insert into st_float_e24 using mt_float tags (" ")      values (now, -033)
S
Shengliang Guan 已提交
535
sql insert into st_float_e25_3 using mt_float tags ('')       values (now, -033)
536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555

sql insert into st_float_e13 using mt_float tags (033) values (now, 00062)
sql insert into st_float_e14 using mt_float tags (033) values (now, 00062)
sql insert into st_float_e15 using mt_float tags (033) values (now, 00062)
sql insert into st_float_e16 using mt_float tags (033) values (now, 00062)
sql insert into st_float_e17 using mt_float tags (033) values (now, 00062)
sql insert into st_float_e18 using mt_float tags (033) values (now, 00062)
sql insert into st_float_e19 using mt_float tags (033) values (now, 00062)
sql insert into st_float_e20 using mt_float tags (033) values (now, 00062)
sql insert into st_float_e21 using mt_float tags (033) values (now, 00062)
sql insert into st_float_e22 using mt_float tags (033) values (now, 00062)
sql insert into st_float_e23 using mt_float tags (033) values (now, 00062)
sql insert into st_float_e24 using mt_float tags (033) values (now, 00062)
sql insert into st_float_e25 using mt_float tags (033) values (now, 00062)

sql_error alter table st_float_e13 set tag tagname=3.50282347e+38     
sql_error alter table st_float_e14 set tag tagname=-3.50282347e+38    
sql_error alter table st_float_e15 set tag tagname=13.40282347e+38   
sql_error alter table st_float_e16 set tag tagname=-13.40282347e+38   
sql_error alter table st_float_e19 set tag tagname=123abc  
S
Shengliang Guan 已提交
556
sql alter table st_float_e20 set tag tagname="123abc" 
557
sql_error alter table st_float_e22 set tag tagname=abc     
S
Shengliang Guan 已提交
558 559 560
sql alter table st_float_e23 set tag tagname="abc"   
sql alter table st_float_e24 set tag tagname=" "     
sql alter table st_float_e25 set tag tagname=''