null_char.sim 12.5 KB
Newer Older
S
slguan 已提交
1 2
#### TBASE-679
system sh/stop_dnodes.sh
S
slguan 已提交
3 4

system sh/deploy.sh -n dnode1 -i 1
H
hjxilinx 已提交
5
system sh/cfg.sh -n dnode1 -c walLevel -v 0
H
hjxilinx 已提交
6
system sh/cfg.sh -n dnode1 -c tableMetaKeepTimer -v 3
S
slguan 已提交
7 8 9 10 11
system sh/exec.sh -n dnode1 -s start

sleep 3000
sql connect

12
print ========== NULL_char.sim
S
slguan 已提交
13 14 15 16 17 18

$db = db
sql drop database if exists $db
sql create database $db
sql use $db

19
#### case 0: field NULL, or 'NULL'
S
slguan 已提交
20
sql create table mt1 (ts timestamp, col1 int, col2 bigint, col3 float, col4 double, col5 binary(8), col6 bool, col7 smallint, col8 tinyint, col9 nchar(8)) tags (tag1 binary(8), tag2 nchar(8), tag3 int, tag4 bigint, tag5 bool, tag6 float)
21
sql create table st1 using mt1 tags (NULL, 'NULL', 100, 1000, 'false', 9.123)
S
slguan 已提交
22 23
sql insert into st1 values ('2019-01-01 09:00:00.000', 123, -123, 3.0, 4.0, 'binary', true, 1000, 121, 'nchar')
sql insert into st1 values ('2019-01-01 09:00:01.000', '456', '456', '3.33', '4.444', 'binary', 'true', '1001', '122', 'nchar')
24 25
sql insert into st1 values ('2019-01-01 09:00:02.000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
sql insert into st1 values ('2019-01-01 09:00:03.000', NULL, NULL, NULL, NULL, 'NULL', 'NULL', 2002, 127, 'NULL')
S
slguan 已提交
26 27 28 29 30

sql select * from mt1
if $rows != 4 then
  return -1
endi
31
if $data21 != NULL then
S
slguan 已提交
32 33
  return -1
endi
34
if $data22 != NULL then
S
slguan 已提交
35 36
  return -1
endi
37
if $data23 != NULL then
S
slguan 已提交
38 39
  return -1
endi
40
if $data24 != NULL then
S
slguan 已提交
41 42
  return -1
endi
43
if $data25 != NULL then
S
slguan 已提交
44 45
  return -1
endi
46
if $data26 != NULL then
S
slguan 已提交
47 48
  return -1
endi
49
if $data27 != NULL then
S
slguan 已提交
50 51
  return -1
endi
52
if $data28 != NULL then
S
slguan 已提交
53 54
  return -1
endi
55
if $data29 != NULL then
S
slguan 已提交
56 57 58
  return -1
endi

59
if $data31 != NULL then
S
slguan 已提交
60 61
  return -1
endi
62
if $data32 != NULL then
S
slguan 已提交
63 64 65 66 67 68 69 70 71 72
  return -1
endi
#if $data33 != 0.00000 then
#  print === expect 0.00000, actually $data33
#  return -1
#endi
#if $data34 != 0.000000000 then
#  print === expect 0.00000, actually $data34
#  return -1
#endi
73
if $data35 != NULL then
S
slguan 已提交
74 75
  return -1
endi
76
if $data36 != NULL then
S
slguan 已提交
77 78
  return -1
endi
79
if $data39 != NULL then
S
slguan 已提交
80 81 82 83
  return -1
endi


84
#### case 1: tag NULL, or 'NULL'
S
slguan 已提交
85
sql create table mt2 (ts timestamp, col1 int, col3 float, col5 binary(8), col6 bool, col9 nchar(8)) tags (tag1 binary(8), tag2 nchar(8), tag3 int, tag5 bool)
86
sql create table st2 using mt2 tags (NULL, 'NULL', 102, 'true')
S
slguan 已提交
87 88 89 90 91 92 93 94
sql describe st2
if $rows != 10 then
  return -1
endi
if $data63 != NULL then
  print ==1== expect: NULL, actually: $data63
  return -1
endi
95
if $data73 != NULL then
S
slguan 已提交
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
  print ==2== expect: NULL, actually: $data73
  return -1
endi
if $data83 != 102 then
  print ==3== expect: NULL, actually: $data83
  return -1
endi
if $data93 != true then
  print ==4== expect: NULL, actually: $data93
  return -1
endi

sql create table st3 using mt2 tags (NULL, 'ABC', 103, 'FALSE')
sql describe st3
if $rows != 10 then
  return -1
endi
if $data63 != NULL then
  print ==5== expect: NULL, actually: $data63
  return -1
endi
if $data73 != ABC then
  return -1
endi
if $data83 != 103 then
  return -1
endi
if $data93 != false then
  return -1
endi

### bool:
sql_error create table stx using mt2 tags ('NULL', '123aBc', 104, '123')
sql_error create table sty using mt2 tags ('NULL', '123aBc', 104, 'xtz')
130
sql create table st4 using mt2 tags ('NULL', '123aBc', 104, 'NULL')
S
slguan 已提交
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
sql describe st4
if $rows != 10 then
  return -1
endi
if $data63 != NULL then
  return -1
endi
if $data73 != 123aBc then
  return -1
endi
if $data83 != 104 then
  return -1
endi
if $data93 != NULL then
  print ==6== expect: NULL, actually: $data93
  return -1
endi

sql create table st5 using mt2 tags ('NULL', '123aBc', 105, NULL)
sql describe st5
if $rows != 10 then
  return -1
endi
if $data63 != NULL then
  return -1
endi
if $data73 != 123aBc then
  return -1
endi
if $data83 != 105 then
  return -1
endi
if $data93 != NULL then
  return -1
endi



#### case 2: dynamic create table using super table when insert into
sql create table mt3 (ts timestamp, col1 int, col3 float, col5 binary(8), col6 bool, col9 nchar(8)) tags (tag1 binary(8), tag2 nchar(8), tag3 int, tag5 bool)
171
sql_error insert into st31 using mt3 tags (NULL, 'NULL', 102, 'true')     values (now+1s, 31, 31, 'bin_31', '123', 'nchar_31')
S
slguan 已提交
172
sql_error insert into st32 using mt3 tags (NULL, 'ABC', 103, 'FALSE')     values (now+2s, 32, 32.12345, 'bin_32', 'abc', 'nchar_32')
173
sql_error insert into st33 using mt3 tags ('NULL', '123aBc', 104, 'NULL') values (now+3s, 33, 33, 'bin_33', 'false123', 'nchar_33')
S
slguan 已提交
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
sql_error insert into st34 using mt3 tags ('NULL', '123aBc', 105, NULL)   values (now+4s, 34, 34.12345, 'bin_34', 'true123', 'nchar_34')


#### case 3: set tag value
sql create table mt4 (ts timestamp, c1 int) tags (tag_binary binary(16), tag_nchar nchar(16), tag_int int, tag_bool bool, tag_float float, tag_double double)
sql create table st41 using mt4 tags ("beijing", 'nchar_tag', 100, false, 9.12345, 7.123456789)
sql describe st41
if $rows != 8 then
  return -1
endi
if $data23 != beijing then
  return -1
endi
if $data33 != nchar_tag then
  return -1
endi
if $data43 != 100 then
  return -1
endi
if $data53 != false then
  return -1
endi
if $data63 != 9.123450 then
  return -1
endi
if $data73 != 7.123457 then
  return -1
endi
################# binary
sql alter table st41 set tag tag_binary = "shanghai"
sql describe st41
if $data23 != shanghai then
  return -1
endi
##### test 'space' case
#$tagvalue = '
#$tagvalue = $tagvalue '
#sql alter table st41 set tag tag_binary = $tagvalue
sql alter table st41 set tag tag_binary = ""
#sql describe st41
#if $data23 != $tagvalue then
#  return -1
#endi
217
sql alter table st41 set tag tag_binary = "NULL"
S
slguan 已提交
218
sql describe st41
219
if $data23 != NULL then
S
slguan 已提交
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
  return -1
endi
sql alter table st41 set tag tag_binary = NULL
sql describe st41
if $data23 != NULL then
  print ==8== expect: NULL, actually: $data23
  return -1
endi

################### nchar
sql alter table st41 set tag tag_nchar = "��˼����"
sql describe st41
#sleep 1000
#if $data33 != ��˼���� then
#  print ==== expect ��˼����, actually $data33
#  return -1
#endi
##### test 'space' case
#$tagvalue = '
#$tagvalue = $tagvalue '
sql alter table st41 set tag tag_nchar = ''
#sql describe st41
#if $data33 != $tagvalue then
#  return -1
#endi
245
sql alter table st41 set tag tag_nchar = "NULL"
S
slguan 已提交
246
sql describe st41
247
if $data33 != NULL then
S
slguan 已提交
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
  return -1
endi
sql alter table st41 set tag tag_nchar = NULL
#sql describe st41
#if $data33 !=   then
#  print ==9== expect  , actually $data33
#   return -1
#endi

################### int
sql alter table st41 set tag tag_int = -2147483647
sql describe st41
if $data43 != -2147483647 then
  return -1
endi
sql alter table st41 set tag tag_int = 2147483647
sql describe st41
if $data43 != 2147483647 then
  return -1
endi

sql_error alter table st41 set tag tag_int = -2147483648
sql_error alter table st41 set tag tag_int = 2147483648

sql alter table st41 set tag tag_int = '-379'
sql describe st41
if $data43 != -379 then
  return -1
endi
sql alter table st41 set tag tag_int = -2000
sql describe st41
if $data43 != -2000 then
  return -1
endi
282
sql alter table st41 set tag tag_int = NULL
S
slguan 已提交
283 284 285 286 287
sql describe st41
if $data43 != NULL then
  print ==10== expect: NULL, actually: $data43
  return -1
endi
288
sql alter table st41 set tag tag_int = 'NULL'
S
slguan 已提交
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
sql_error alter table st41 set tag tag_int = ''
sql_error alter table st41 set tag tag_int = abc379

################### bool
sql alter table st41 set tag tag_bool = 'true'
sql describe st41
if $data53 != true then
  return -1
endi
sql alter table st41 set tag tag_bool = 'false'
sql describe st41
if $data53 != false then
  return -1
endi
sql alter table st41 set tag tag_bool = 0
sql describe st41
if $data53 != false then
  return -1
endi
sql alter table st41 set tag tag_bool = 123
sql describe st41
if $data53 != true then
  return -1
endi
313
sql alter table st41 set tag tag_bool = 'NULL'
S
slguan 已提交
314 315 316 317 318
sql describe st41
if $data53 != NULL then
  print ==14== expect: NULL, actually: $data53
  return -1
endi
319
sql alter table st41 set tag tag_bool = NULL
S
slguan 已提交
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
sql describe st41
if $data53 != NULL then
  return -1
endi

sql_error alter table st41 set tag tag_bool = '123'
sql_error alter table st41 set tag tag_bool = ''
sql_error alter table st41 set tag tag_bool = abc379

################### float
sql alter table st41 set tag tag_float = -32
sql describe st41
if $data63 != -32.000000 then
  return -1
endi
sql alter table st41 set tag tag_float = 54.123456
sql describe st41
if $data63 != 54.123455 then
  print ==15== expect: 54.123455, actually: $data63
#  return -1
endi
sql alter table st41 set tag tag_float = 54.12345
sql describe st41
if $data63 != 54.123451 then
  print ==16== expect: 54.123451, actually: $data63
  return -1
endi
sql alter table st41 set tag tag_float = 54.12345678
sql describe st41
if $data63 != 54.123455 then
  print ==11== expect: 54.123455, actually : $data63
  return -1
endi
353
sql alter table st41 set tag tag_float = NULL
S
slguan 已提交
354 355 356 357 358
sql describe st41
if $data63 != NULL then
  print ==12== expect: NULL, actually : $data63
  return -1
endi
359
sql alter table st41 set tag tag_float = 'NULL'
S
slguan 已提交
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 386 387 388 389 390 391 392 393 394 395 396 397 398
sql describe st41
if $data63 != NULL then
  print ==17== expect: NULL, actually : $data63
  return -1
endi
sql alter table st41 set tag tag_float = '54.123456'
sql describe st41
if $data63 != 54.123455 then
  print ==18== expect: 54.123455, actually : $data63
  return -1
endi
sql alter table st41 set tag tag_float = '-54.123456'
sql describe st41
if $data63 != -54.123455 then
  print ==19== expect: -54.123455, actually : $data63
  return -1
endi
sql_error alter table st41 set tag tag_float = ''

sql_error alter table st41 set tag tag_float = 'abc'
sql_error alter table st41 set tag tag_float = '123abc'
sql_error alter table st41 set tag tag_float = abc

################### double
sql alter table st41 set tag tag_double = -92
sql describe st41
if $data73 != -92.000000 then
  return -1
endi
sql alter table st41 set tag tag_double = 184
sql describe st41
if $data73 != 184.000000 then
  return -1
endi
sql alter table st41 set tag tag_double = '-2456'
sql describe st41
if $data73 != -2456.000000 then
  return -1
endi
399
sql alter table st41 set tag tag_double = NULL
S
slguan 已提交
400 401 402 403 404
sql describe st41
if $data73 != NULL then
  print ==13== expect: NULL, actually : $data73
  return -1
endi
405
sql alter table st41 set tag tag_double = 'NULL'
S
slguan 已提交
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
sql describe st41
if $data73 != NULL then
  print ==20== expect: NULL, actually : $data73
  return -1
endi
sql_error alter table st41 set tag tag_double = ''


sql_error alter table st41 set tag tag_double = 'abc'
sql_error alter table st41 set tag tag_double = '123abc' 
sql_error alter table st41 set tag tag_double = abc

################### bigint smallint tinyint
sql create table mt5 (ts timestamp, c1 int) tags (tag_bigint bigint, tag_smallint smallint, tag_tinyint tinyint)
sql create table st51 using mt5 tags (1, 2, 3)
sql alter table st51 set tag tag_bigint = '-379'
sql alter table st51 set tag tag_bigint = -2000
423
sql alter table st51 set tag tag_bigint = NULL
S
slguan 已提交
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
sql alter table st51 set tag tag_bigint = 9223372036854775807
sql describe st51
if $data23 != 9223372036854775807 then
  return -1
endi
sql alter table st51 set tag tag_bigint = 9223372036854775808
sql describe st51
if $data23 != 9223372036854775807 then
  return -1
endi
sql alter table st51 set tag tag_bigint = -9223372036854775807
sql describe st51
if $data23 != -9223372036854775807 then
  return -1
endi
sql_error alter table st51 set tag tag_bigint = -9223372036854775808


442
sql alter table st51 set tag tag_bigint = 'NULL'
S
slguan 已提交
443 444 445 446 447
sql_error alter table st51 set tag tag_bigint = ''
sql_error alter table st51 set tag tag_bigint = abc379

####
sql alter table st51 set tag tag_smallint = -2000
448
sql alter table st51 set tag tag_smallint = NULL
S
slguan 已提交
449 450 451 452 453 454 455 456 457 458 459 460 461 462
sql alter table st51 set tag tag_smallint = 32767
sql describe st51
if $data33 != 32767 then
  return -1
endi
sql_error alter table st51 set tag tag_smallint = 32768

sql alter table st51 set tag tag_smallint = -32767
sql describe st51
if $data33 != -32767 then
  return -1
endi
sql_error alter table st51 set tag tag_smallint = -32768

463
sql alter table st51 set tag tag_smallint = 'NULL'
S
slguan 已提交
464 465 466 467 468
sql_error alter table st51 set tag tag_smallint = ''
sql_error alter table st51 set tag tag_smallint = abc379

####
sql alter table st51 set tag tag_tinyint = -127
469
sql alter table st51 set tag tag_tinyint = NULL
S
slguan 已提交
470 471 472 473 474 475 476 477 478 479 480 481
sql alter table st51 set tag tag_tinyint = 127
sql describe st51
if $data43 != 127 then
  return -1
endi
sql alter table st51 set tag tag_tinyint = -127
sql describe st51
if $data43 != -127 then
  return -1
endi
sql_error alter table st51 set tag tag_tinyint = '-128'
sql_error alter table st51 set tag tag_tinyint = 128
482
sql alter table st51 set tag tag_tinyint = 'NULL'
S
slguan 已提交
483 484 485 486 487 488 489 490
sql_error alter table st51 set tag tag_tinyint = ''
sql_error alter table st51 set tag tag_tinyint = abc379


# test end   
#sql drop database $db


S
scripts  
Shengliang Guan 已提交
491
system sh/exec.sh -n dnode1 -s stop -x SIGINT