columnValue_bigint.sim 15.3 KB
Newer Older
S
slguan 已提交
1 2 3 4 5 6 7 8 9 10 11 12
sleep 3000
sql connect
sql create database if not exists db
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: bigint
print ========== bigint 
sql create table mt_bigint (ts timestamp, c bigint) tags (tagname bigint)

## case 00: static create table for test tag values
H
hjxilinx 已提交
13 14 15
sql create table st_bigint_0  using mt_bigint tags (NULL)
sql select tagname from  st_bigint_0
if $data00 != NULL then
S
slguan 已提交
16 17 18
  return -1
endi
sql create table st_bigint_1  using mt_bigint tags (NULL)
H
hjxilinx 已提交
19 20
sql select tagname from  st_bigint_1
if $data00 != NULL then
S
slguan 已提交
21 22
  return -1
endi
H
hjxilinx 已提交
23 24 25
sql create table st_bigint_2  using mt_bigint tags ('NULL')
sql select tagname from  st_bigint_2
if $data00 != NULL then
S
slguan 已提交
26 27 28
  return -1
endi
sql create table st_bigint_3  using mt_bigint tags ('NULL')
H
hjxilinx 已提交
29 30
sql select tagname from  st_bigint_3
if $data00 != NULL then
S
slguan 已提交
31 32
  return -1
endi
H
hjxilinx 已提交
33 34 35
sql create table st_bigint_4  using mt_bigint tags ("NULL")
sql select tagname from  st_bigint_4
if $data00 != NULL then
S
slguan 已提交
36 37 38
  return -1
endi
sql create table st_bigint_5  using mt_bigint tags ("NULL")
H
hjxilinx 已提交
39 40
sql select tagname from  st_bigint_5
if $data00 != NULL then
S
slguan 已提交
41 42 43
  return -1
endi
sql create table st_bigint_6  using mt_bigint tags (-9223372036854775807)
H
hjxilinx 已提交
44 45
sql select tagname from  st_bigint_6
if $data00 != -9223372036854775807 then
S
slguan 已提交
46 47 48
  return -1
endi
sql create table st_bigint_7  using mt_bigint tags (9223372036854775807)
H
hjxilinx 已提交
49 50
sql select tagname from  st_bigint_7
if $data00 != 9223372036854775807 then
S
slguan 已提交
51 52 53
  return -1
endi
sql create table st_bigint_8  using mt_bigint tags (37)
H
hjxilinx 已提交
54 55
sql select tagname from  st_bigint_8
if $data00 != 37 then
S
slguan 已提交
56 57 58
  return -1
endi
sql create table st_bigint_9  using mt_bigint tags (-100)
H
hjxilinx 已提交
59 60
sql select tagname from  st_bigint_9
if $data00 != -100 then
S
slguan 已提交
61 62 63
  return -1
endi
sql create table st_bigint_10 using mt_bigint tags (+113)
H
hjxilinx 已提交
64 65
sql select tagname from  st_bigint_10
if $data00 != 113 then
S
slguan 已提交
66 67 68
  return -1
endi
sql create table st_bigint_11 using mt_bigint tags ('-100')
H
hjxilinx 已提交
69 70
sql select tagname from  st_bigint_11
if $data00 != -100 then
S
slguan 已提交
71 72 73
  return -1
endi
sql create table st_bigint_12 using mt_bigint tags ("+78")
H
hjxilinx 已提交
74 75
sql select tagname from  st_bigint_12
if $data00 != 78 then
S
slguan 已提交
76 77 78
  return -1
endi
sql create table st_bigint_13 using mt_bigint tags (+0078)
H
hjxilinx 已提交
79 80
sql select tagname from  st_bigint_13
if $data00 != 78 then
S
slguan 已提交
81 82 83
  return -1
endi
sql create table st_bigint_14 using mt_bigint tags (-00078)
H
hjxilinx 已提交
84 85
sql select tagname from  st_bigint_14
if $data00 != -78 then
S
slguan 已提交
86 87 88 89
  return -1
endi

## case 01: insert values  for test column values
H
hjxilinx 已提交
90
sql insert into st_bigint_0  values (now, NULL)
S
slguan 已提交
91 92 93 94
sql select * from st_bigint_0
if $rows != 1 then
  return -1
endi
H
hjxilinx 已提交
95
if $data01 != NULL then
S
slguan 已提交
96 97 98 99 100 101 102
  return -1
endi 
sql insert into st_bigint_1  values (now, NULL)
sql select * from st_bigint_1
if $rows != 1 then
  return -1
endi
H
hjxilinx 已提交
103
if $data01 != NULL then
S
slguan 已提交
104 105
  return -1
endi  
H
hjxilinx 已提交
106
sql insert into st_bigint_2  values (now, 'NULL')
S
slguan 已提交
107 108 109 110
sql select * from st_bigint_2
if $rows != 1 then
  return -1
endi
H
hjxilinx 已提交
111
if $data01 != NULL then
S
slguan 已提交
112 113 114 115 116 117 118
  return -1
endi
sql insert into st_bigint_3  values (now, 'NULL')
sql select * from st_bigint_3
if $rows != 1 then
  return -1
endi
H
hjxilinx 已提交
119
if $data01 != NULL then
S
slguan 已提交
120 121
  return -1
endi
H
hjxilinx 已提交
122
sql insert into st_bigint_4  values (now, "NULL")
S
slguan 已提交
123 124 125 126
sql select * from st_bigint_4
if $rows != 1 then
  return -1
endi
H
hjxilinx 已提交
127
if $data01 != NULL then
S
slguan 已提交
128 129 130 131 132 133 134
  return -1
endi
sql insert into st_bigint_5  values (now, "NULL")
sql select * from st_bigint_5
if $rows != 1 then
  return -1
endi
H
hjxilinx 已提交
135
if $data01 != NULL then
S
slguan 已提交
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
  return -1
endi
sql insert into st_bigint_6  values (now, 9223372036854775807)
sql select * from st_bigint_6
if $rows != 1 then
  return -1
endi
if $data01 != 9223372036854775807 then
  return -1
endi 
sql insert into st_bigint_7  values (now, -9223372036854775807)
sql select * from st_bigint_7
if $rows != 1 then
  return -1
endi
if $data01 != -9223372036854775807 then
  return -1
endi  
sql insert into st_bigint_8  values (now, +100) 
sql select * from st_bigint_8
if $rows != 1 then
  return -1
endi
if $data01 != 100 then
  return -1
endi   
sql insert into st_bigint_9  values (now, "-098")
sql select * from st_bigint_9
if $rows != 1 then
  return -1
endi
if $data01 != -98 then
  return -1
endi 
sql insert into st_bigint_10 values (now, '0')
sql select * from st_bigint_10
if $rows != 1 then
  return -1
endi
if $data01 != 0 then
  return -1
endi 
sql insert into st_bigint_11 values (now, -0)  
sql select * from st_bigint_11
if $rows != 1 then
  return -1
endi
if $data01 != 0 then
  return -1
endi 
sql insert into st_bigint_12 values (now, "+056")
sql select * from st_bigint_12
if $rows != 1 then
  return -1
endi
if $data01 != 56 then
  return -1
endi 

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

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

## case 02: dynamic create table for test tag values
H
hjxilinx 已提交
214 215 216
sql insert into st_bigint_16 using mt_bigint tags (NULL)   values (now, NULL)
sql select tagname from  st_bigint_16
if $data00 != NULL then
S
slguan 已提交
217 218 219
  return -1
endi
sql select * from st_bigint_16
H
hjxilinx 已提交
220
if $data01 != NULL then
S
slguan 已提交
221 222 223 224
  return -1
endi
    
sql insert into st_bigint_17 using mt_bigint tags (NULL)   values (now, NULL)
H
hjxilinx 已提交
225 226
sql select tagname from  st_bigint_17
if $data00 != NULL then
S
slguan 已提交
227 228 229
  return -1
endi
sql select * from st_bigint_17
H
hjxilinx 已提交
230
if $data01 != NULL then
S
slguan 已提交
231 232
  return -1
endi  
H
hjxilinx 已提交
233 234 235
sql insert into st_bigint_18 using mt_bigint tags ('NULL') values (now, 'NULL')
sql select tagname from  st_bigint_18
if $data00 != NULL then
S
slguan 已提交
236 237 238
  return -1
endi
sql select * from st_bigint_18
H
hjxilinx 已提交
239
if $data01 != NULL then
S
slguan 已提交
240 241 242
  return -1
endi
sql insert into st_bigint_19 using mt_bigint tags ('NULL') values (now, 'NULL')
H
hjxilinx 已提交
243 244
sql select tagname from  st_bigint_19
if $data00 != NULL then
S
slguan 已提交
245 246 247
  return -1
endi
sql select * from st_bigint_19
H
hjxilinx 已提交
248
if $data01 != NULL then
S
slguan 已提交
249 250
  return -1
endi
H
hjxilinx 已提交
251 252 253
sql insert into st_bigint_20 using mt_bigint tags ("NULL") values (now, "NULL")
sql select tagname from  st_bigint_20
if $data00 != NULL then
S
slguan 已提交
254 255 256
  return -1
endi
sql select * from st_bigint_20
H
hjxilinx 已提交
257
if $data01 != NULL then
S
slguan 已提交
258 259 260
  return -1
endi
sql insert into st_bigint_21 using mt_bigint tags ("NULL") values (now, "NULL")
H
hjxilinx 已提交
261 262
sql select tagname from  st_bigint_21
if $data00 != NULL then
S
slguan 已提交
263 264 265
  return -1
endi
sql select * from st_bigint_21
H
hjxilinx 已提交
266
if $data01 != NULL then
S
slguan 已提交
267 268 269
  return -1
endi
sql insert into st_bigint_22 using mt_bigint tags (9223372036854775807)  values (now, 9223372036854775807)
H
hjxilinx 已提交
270 271
sql select tagname from  st_bigint_22
if $data00 != 9223372036854775807 then
S
slguan 已提交
272 273 274 275 276 277 278
  return -1
endi
sql select * from st_bigint_22
if $data01 != 9223372036854775807 then
  return -1
endi 
sql insert into st_bigint_23 using mt_bigint tags (-9223372036854775807)  values (now, -9223372036854775807)
H
hjxilinx 已提交
279 280
sql select tagname from  st_bigint_23
if $data00 != -9223372036854775807 then
S
slguan 已提交
281 282 283 284 285 286 287
  return -1
endi
sql select * from st_bigint_23
if $data01 != -9223372036854775807 then
  return -1
endi  
sql insert into st_bigint_24 using mt_bigint tags (10)    values (now, 10)
H
hjxilinx 已提交
288 289
sql select tagname from  st_bigint_24
if $data00 != 10 then
S
slguan 已提交
290 291 292 293 294 295 296
  return -1
endi
sql select * from st_bigint_24
if $data01 != 10 then
  return -1
endi    
sql insert into st_bigint_25 using mt_bigint tags ("-0") values (now, "-0")
H
hjxilinx 已提交
297 298
sql select tagname from  st_bigint_25
if $data00 != 0 then
S
slguan 已提交
299 300 301 302 303 304 305
  return -1
endi
sql select * from st_bigint_25
if $data01 != 0 then
  return -1
endi 
sql insert into st_bigint_26 using mt_bigint tags ('123') values (now, '123')
H
hjxilinx 已提交
306 307
sql select tagname from  st_bigint_26
if $data00 != 123 then
S
slguan 已提交
308 309 310 311 312 313 314
  return -1
endi
sql select * from st_bigint_26
if $data01 != 123 then
  return -1
endi 
sql insert into st_bigint_27 using mt_bigint tags (+056) values (now, +00056)
H
hjxilinx 已提交
315 316
sql select tagname from  st_bigint_27
if $data00 != 56 then
S
slguan 已提交
317 318 319 320 321 322 323
  return -1
endi
sql select * from st_bigint_27
if $data01 != 56 then
  return -1
endi 
sql insert into st_bigint_28 using mt_bigint tags (-056) values (now, -0056)
H
hjxilinx 已提交
324 325
sql select tagname from  st_bigint_28
if $data00 != -56 then
S
slguan 已提交
326 327 328 329 330 331 332
  return -1
endi
sql select * from st_bigint_28
if $data01 != -56 then
  return -1
endi 

H
hjxilinx 已提交
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
### case 03: alter tag values
#sql alter table st_bigint_0 set tag tagname=9223372036854775807
#sql select tagname from  st_bigint_0
#if $data00 != 9223372036854775807 then
#  return -1
#endi
#sql alter table st_bigint_0 set tag tagname=-9223372036854775807
#sql select tagname from  st_bigint_0
#if $data00 != -9223372036854775807 then
#  return -1
#endi
#sql alter table st_bigint_0 set tag tagname=+100
#sql select tagname from  st_bigint_0
#if $data00 != 100 then
#  return -1
#endi
#sql alter table st_bigint_0 set tag tagname=-33
#sql select tagname from  st_bigint_0
#if $data00 != -33 then
#  return -1
#endi
#sql alter table st_bigint_0 set tag tagname='+98'
#sql select tagname from  st_bigint_0
#if $data00 != 98 then
#  return -1
#endi
#sql alter table st_bigint_0 set tag tagname='-076'
#sql select tagname from  st_bigint_0
#if $data00 != -76 then
#  return -1
#endi
#sql alter table st_bigint_0 set tag tagname=+0012
#sql select tagname from  st_bigint_0
#if $data00 != 12 then
#  return -1
#endi
#sql alter table st_bigint_0 set tag tagname=-00063
#sql select tagname from  st_bigint_0
#if $data00 != -63 then
#  return -1
#endi
S
slguan 已提交
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456

## case 04: illegal input
################## when overflow, auto set max
sql       create table st_bigint_e0   using mt_bigint tags (9223372036854775808)
sql_error create table st_bigint_e0_1 using mt_bigint tags (-9223372036854775808)
sql       create table st_bigint_e0_2 using mt_bigint tags (92233720368547758080)
sql_error create table st_bigint_e0_3 using mt_bigint tags (-9223372036854775809)
#sql_error create table st_bigint_e0 using mt_bigint tags (12.80)   truncate integer part
#sql_error create table st_bigint_e0 using mt_bigint tags (-11.80)
sql_error create table st_bigint_e0 using mt_bigint tags (123abc)  
sql_error create table st_bigint_e0 using mt_bigint tags ("123abc")
sql_error create table st_bigint_e0 using mt_bigint tags (abc)     
sql_error create table st_bigint_e0 using mt_bigint tags ("abc")   
sql_error create table st_bigint_e0 using mt_bigint tags (" ")     
sql_error create table st_bigint_e0 using mt_bigint tags ('')      

sql create table st_bigint_e0  using mt_bigint tags (123)
sql create table st_bigint_e1  using mt_bigint tags (123)
sql create table st_bigint_e2  using mt_bigint tags (123)
sql create table st_bigint_e3  using mt_bigint tags (123)
sql create table st_bigint_e4  using mt_bigint tags (123)
sql create table st_bigint_e5  using mt_bigint tags (123)
sql create table st_bigint_e6  using mt_bigint tags (123)
sql create table st_bigint_e7  using mt_bigint tags (123)
sql create table st_bigint_e8  using mt_bigint tags (123)
sql create table st_bigint_e9  using mt_bigint tags (123)
sql create table st_bigint_e10 using mt_bigint tags (123)
sql create table st_bigint_e11 using mt_bigint tags (123)
sql create table st_bigint_e12 using mt_bigint tags (123)

sql_error insert into st_bigint_e0  values (now, 9223372036854775808)     
sql_error insert into st_bigint_e1  values (now, -9223372036854775808)    
sql_error insert into st_bigint_e2  values (now, 9223372036854775809)    
sql_error insert into st_bigint_e3  values (now, -9223372036854775808)   
#sql_error insert into st_bigint_e4  values (now, 922337203.6854775808)   
#sql_error insert into st_bigint_e5  values (now, -922337203685477580.9)  
sql_error insert into st_bigint_e6  values (now, 123abc)  
sql_error insert into st_bigint_e7  values (now, "123abc")
sql_error insert into st_bigint_e9  values (now, abc)     
sql_error insert into st_bigint_e10 values (now, "abc")   
sql_error insert into st_bigint_e11 values (now, " ")     
sql_error insert into st_bigint_e12 values (now, '')      

sql_error insert into st_bigint_e13 using mt_bigint tags (033) values (now, 9223372036854775808)     
sql_error insert into st_bigint_e14 using mt_bigint tags (033) values (now, -9223372036854775808)    
sql_error insert into st_bigint_e15 using mt_bigint tags (033) values (now, 9223372036854775818)    
sql_error insert into st_bigint_e16 using mt_bigint tags (033) values (now, -9923372036854775808)   
#sql_error insert into st_bigint_e17 using mt_bigint tags (033) values (now, 92233720368547758.08)   
#sql_error insert into st_bigint_e18 using mt_bigint tags (033) values (now, -92233720368547.75808)  
sql_error insert into st_bigint_e19 using mt_bigint tags (033) values (now, 123abc)  
sql_error insert into st_bigint_e20 using mt_bigint tags (033) values (now, "123abc")
sql_error insert into st_bigint_e22 using mt_bigint tags (033) values (now, abc)     
sql_error insert into st_bigint_e23 using mt_bigint tags (033) values (now, "abc")   
sql_error insert into st_bigint_e24 using mt_bigint tags (033) values (now, " ")     
sql_error insert into st_bigint_e25 using mt_bigint tags (033) values (now, '')  

sql_error insert into st_bigint_e13_0 using mt_bigint tags (9223372036854775808)      values (now, -033)
sql_error insert into st_bigint_e14_0 using mt_bigint tags (-9223372036854775808)     values (now, -033)
sql_error insert into st_bigint_e15_0 using mt_bigint tags (9223372036854775809)     values (now, -033)
sql_error insert into st_bigint_e16_0 using mt_bigint tags (-9223372036854775898)    values (now, -033)
#sql_error insert into st_bigint_e17 using mt_bigint tags (12.80)    values (now, -033)
#sql_error insert into st_bigint_e18 using mt_bigint tags (-11.80)   values (now, -033)
sql_error insert into st_bigint_e19 using mt_bigint tags (123abc)   values (now, -033)
sql_error insert into st_bigint_e20 using mt_bigint tags ("123abc") values (now, -033)
sql_error insert into st_bigint_e22 using mt_bigint tags (abc)      values (now, -033)
sql_error insert into st_bigint_e23 using mt_bigint tags ("abc")    values (now, -033)
sql_error insert into st_bigint_e24 using mt_bigint tags (" ")      values (now, -033)
sql_error insert into st_bigint_e25 using mt_bigint tags ('')       values (now, -033)

sql insert into st_bigint_e13 using mt_bigint tags (033) values (now, 00062)
sql insert into st_bigint_e14 using mt_bigint tags (033) values (now, 00062)
sql insert into st_bigint_e15 using mt_bigint tags (033) values (now, 00062)
sql insert into st_bigint_e16 using mt_bigint tags (033) values (now, 00062)
sql insert into st_bigint_e17 using mt_bigint tags (033) values (now, 00062)
sql insert into st_bigint_e18 using mt_bigint tags (033) values (now, 00062)
sql insert into st_bigint_e19 using mt_bigint tags (033) values (now, 00062)
sql insert into st_bigint_e20 using mt_bigint tags (033) values (now, 00062)
sql insert into st_bigint_e21 using mt_bigint tags (033) values (now, 00062)
sql insert into st_bigint_e22 using mt_bigint tags (033) values (now, 00062)
sql insert into st_bigint_e23 using mt_bigint tags (033) values (now, 00062)
sql insert into st_bigint_e24 using mt_bigint tags (033) values (now, 00062)
sql insert into st_bigint_e25 using mt_bigint tags (033) values (now, 00062)

H
hjxilinx 已提交
457 458 459 460 461 462 463 464 465 466
#sql alter table st_bigint_e13 set tag tagname=9223372036854775808
#sql_error alter table st_bigint_e14 set tag tagname=-9223372036854775808
#sql alter table st_bigint_e15 set tag tagname=92233720368547758080
#sql_error alter table st_bigint_e16 set tag tagname=-92233720368547758080
#sql_error alter table st_bigint_e19 set tag tagname=123abc
#sql_error alter table st_bigint_e20 set tag tagname="123abc"
#sql_error alter table st_bigint_e22 set tag tagname=abc
#sql_error alter table st_bigint_e23 set tag tagname="abc"
#sql_error alter table st_bigint_e24 set tag tagname=" "
#sql_error alter table st_bigint_e25 set tag tagname=''