null_char.sim 12.6 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')
H
Haojun Liao 已提交
87 88
sql select tag1, tag2, tag3, tag5 from st2
if $rows != 1 then
S
slguan 已提交
89 90
  return -1
endi
H
Haojun Liao 已提交
91 92
if $data00 != NULL then
  print ==1== expect: NULL, actually: $data00
S
slguan 已提交
93 94
  return -1
endi
H
Haojun Liao 已提交
95 96
if $data01 != NULL then
  print ==2== expect: NULL, actually: $data01
S
slguan 已提交
97 98
  return -1
endi
H
Haojun Liao 已提交
99 100
if $data02 != 102 then
  print ==3== expect: NULL, actually: $data02
S
slguan 已提交
101 102
  return -1
endi
H
Haojun Liao 已提交
103 104
if $data03 != 1 then
  print ==4== expect: 1, actually: $data03
S
slguan 已提交
105 106 107 108
  return -1
endi

sql create table st3 using mt2 tags (NULL, 'ABC', 103, 'FALSE')
H
Haojun Liao 已提交
109 110
sql select tag1, tag2, tag3, tag5 from st3
if $rows != 1 then
S
slguan 已提交
111 112
  return -1
endi
H
Haojun Liao 已提交
113 114
if $data00 != NULL then
  print ==5== expect: NULL, actually: $data00
S
slguan 已提交
115 116
  return -1
endi
H
Haojun Liao 已提交
117
if $data01 != ABC then
S
slguan 已提交
118 119
  return -1
endi
H
Haojun Liao 已提交
120
if $data02 != 103 then
S
slguan 已提交
121 122
  return -1
endi
H
Haojun Liao 已提交
123
if $data03 != 0 then
S
slguan 已提交
124 125 126 127 128 129
  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')
H
Haojun Liao 已提交
131 132
sql select tag1,tag2,tag3,tag5 from st4
if $rows != 1 then
S
slguan 已提交
133 134
  return -1
endi
H
Haojun Liao 已提交
135
if $data00 != NULL then
S
slguan 已提交
136 137
  return -1
endi
H
Haojun Liao 已提交
138
if $data01 != 123aBc then
S
slguan 已提交
139 140
  return -1
endi
H
Haojun Liao 已提交
141
if $data02 != 104 then
S
slguan 已提交
142 143
  return -1
endi
H
Haojun Liao 已提交
144 145
if $data03 != NULL then
  print ==6== expect: NULL, actually: $data03
S
slguan 已提交
146 147 148 149
  return -1
endi

sql create table st5 using mt2 tags ('NULL', '123aBc', 105, NULL)
H
Haojun Liao 已提交
150 151
sql select tag1,tag2,tag3,tag5 from st5
if $rows != 1 then
S
slguan 已提交
152 153
  return -1
endi
H
Haojun Liao 已提交
154
if $data00 != NULL then
S
slguan 已提交
155 156
  return -1
endi
H
Haojun Liao 已提交
157
if $data01 != 123aBc then
S
slguan 已提交
158 159
  return -1
endi
H
Haojun Liao 已提交
160
if $data02 != 105 then
S
slguan 已提交
161 162
  return -1
endi
H
Haojun Liao 已提交
163
if $data03 != NULL then
S
slguan 已提交
164 165 166 167 168 169 170
  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
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)
H
Haojun Liao 已提交
180 181
sql select tag_binary, tag_nchar, tag_int, tag_bool, tag_float, tag_double st41
if $rows != 1 then
S
slguan 已提交
182 183
  return -1
endi
H
Haojun Liao 已提交
184
if $data00 != beijing then
S
slguan 已提交
185 186
  return -1
endi
H
Haojun Liao 已提交
187
if $data01 != nchar_tag then
S
slguan 已提交
188 189
  return -1
endi
H
Haojun Liao 已提交
190
if $data02 != 100 then
S
slguan 已提交
191 192
  return -1
endi
H
Haojun Liao 已提交
193
if $data03 != false then
S
slguan 已提交
194 195
  return -1
endi
H
Haojun Liao 已提交
196
if $dat04 != 9.123450 then
S
slguan 已提交
197 198
  return -1
endi
H
Haojun Liao 已提交
199
if $data05 != 7.123457 then
S
slguan 已提交
200 201
  return -1
endi
H
Haojun Liao 已提交
202

S
slguan 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
################# 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
218
sql alter table st41 set tag tag_binary = "NULL"
S
slguan 已提交
219
sql describe st41
220
if $data23 != NULL then
S
slguan 已提交
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
  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
246
sql alter table st41 set tag tag_nchar = "NULL"
S
slguan 已提交
247
sql describe st41
248
if $data33 != NULL then
S
slguan 已提交
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
  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
283
sql alter table st41 set tag tag_int = NULL
S
slguan 已提交
284 285 286 287 288
sql describe st41
if $data43 != NULL then
  print ==10== expect: NULL, actually: $data43
  return -1
endi
289
sql alter table st41 set tag tag_int = 'NULL'
S
slguan 已提交
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
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
314
sql alter table st41 set tag tag_bool = 'NULL'
S
slguan 已提交
315 316 317 318 319
sql describe st41
if $data53 != NULL then
  print ==14== expect: NULL, actually: $data53
  return -1
endi
320
sql alter table st41 set tag tag_bool = NULL
S
slguan 已提交
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
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
354
sql alter table st41 set tag tag_float = NULL
S
slguan 已提交
355 356 357 358 359
sql describe st41
if $data63 != NULL then
  print ==12== expect: NULL, actually : $data63
  return -1
endi
360
sql alter table st41 set tag tag_float = 'NULL'
S
slguan 已提交
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 399
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
400
sql alter table st41 set tag tag_double = NULL
S
slguan 已提交
401 402 403 404 405
sql describe st41
if $data73 != NULL then
  print ==13== expect: NULL, actually : $data73
  return -1
endi
406
sql alter table st41 set tag tag_double = 'NULL'
S
slguan 已提交
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
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
424
sql alter table st51 set tag tag_bigint = NULL
S
slguan 已提交
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
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


443
sql alter table st51 set tag tag_bigint = 'NULL'
S
slguan 已提交
444 445 446 447 448
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
449
sql alter table st51 set tag tag_smallint = NULL
S
slguan 已提交
450 451 452 453 454 455 456 457 458 459 460 461 462 463
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

464
sql alter table st51 set tag tag_smallint = 'NULL'
S
slguan 已提交
465 466 467 468 469
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
470
sql alter table st51 set tag tag_tinyint = NULL
S
slguan 已提交
471 472 473 474 475 476 477 478 479 480 481 482
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
483
sql alter table st51 set tag tag_tinyint = 'NULL'
S
slguan 已提交
484 485 486 487 488 489 490 491
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 已提交
492
system sh/exec.sh -n dnode1 -s stop -x SIGINT