TDengine/tests/script/tsim/compute/null.sim

232 lines
4 KiB
Text
Raw Normal View History

system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
system sh/exec.sh -n dnode1 -s start
sql connect
$dbPrefix = db
$tbPrefix = tb
$mtPrefix = mt
$tbNum = 10
$rowNum = 20
$totalNum = 200
print =============== step1
$i = 0
$db = $dbPrefix . $i
$mt = $mtPrefix . $i
sql drop database $db -x step1
step1:
sql create database $db
sql use $db
sql create table $mt (ts timestamp, tbcol int, tbcol2 int) TAGS(tgcol int)
$i = 0
while $i < $tbNum
$tb = $tbPrefix . $i
sql create table $tb using $mt tags( $i )
2022-08-15 06:10:07 +00:00
$x = 0
while $x < $rowNum
$cc = $x * 60000
$ms = 1601481600000 + $cc
2022-08-15 06:10:07 +00:00
$v1 = $x
$v2 = $x
if $x == 0 then
$v1 = NULL
endi
2022-08-15 06:10:07 +00:00
sql insert into $tb values ($ms , $v1 , $v2 )
$x = $x + 1
2022-08-15 06:10:07 +00:00
endw
$i = $i + 1
2022-08-15 06:10:07 +00:00
endw
print =============== step2
$i = 1
$tb = $tbPrefix . $i
sql select * from $tb
print $data00 $data01 $data02
if $data01 != NULL then
return -1
endi
if $data02 != 0 then
return -1
endi
if $rows != 20 then
return -1
endi
print =============== step3
2022-08-15 06:10:07 +00:00
sql select count(tbcol), count(tbcol2), avg(tbcol), avg(tbcol2), sum(tbcol), sum(tbcol2) from $tb
print ===> $data00 $data01 $data02 $data03 $data04 $data05
if $data00 != 19 then
return -1
endi
2022-08-15 06:10:07 +00:00
if $data01 != 20 then
return -1
endi
2022-08-15 06:10:07 +00:00
if $data02 != 10.000000000 then
return -1
endi
2022-08-15 06:10:07 +00:00
if $data03 != 9.500000000 then
return -1
endi
2022-08-15 06:10:07 +00:00
if $data04 != 190 then
return -1
endi
2022-08-15 06:10:07 +00:00
if $data05 != 190 then
return -1
endi
print =============== step4
sql select * from $tb where tbcol2 = 19
print ===> $data01 $data02
2022-08-15 06:10:07 +00:00
if $rows != 1 then
return -1
endi
2022-08-15 06:10:07 +00:00
if $data01 != 19 then
return -1
endi
2022-08-15 06:10:07 +00:00
if $data02 != 19 then
return -1
endi
2022-08-15 06:10:07 +00:00
sql select * from $tb where tbcol is NULL
if $rows != 1 then
return -1
2022-07-13 09:59:25 +00:00
endi
2022-08-15 06:10:07 +00:00
sql select * from $tb where tbcol = NULL
if $rows != 0 then
2022-07-14 07:16:09 +00:00
return -1
endi
print =============== step5
2022-07-13 09:59:25 +00:00
sql create table tt using $mt tags( NULL )
#sql alter table $tb set tgcol=NULL -x step52
# return -1
#step52:
2022-07-13 09:59:25 +00:00
sql select * from $mt where tgcol is NULL
2022-08-15 06:10:07 +00:00
if $rows != 0 then
return -1
2022-07-13 09:59:25 +00:00
endi
print =============== step6
2022-08-15 06:10:07 +00:00
sql select count(tbcol), count(tbcol2), avg(tbcol), avg(tbcol2), sum(tbcol), sum(tbcol2) from $mt
print ===> $data00 $data01 $data02 $data03 $data04 $data05
if $data00 != 190 then
return -1
endi
2022-08-15 06:10:07 +00:00
if $data01 != 200 then
return -1
endi
2022-08-15 06:10:07 +00:00
if $data02 != 10.000000000 then
return -1
endi
2022-08-15 06:10:07 +00:00
if $data03 != 9.500000000 then
return -1
endi
2022-08-15 06:10:07 +00:00
if $data04 != 1900 then
return -1
endi
2022-08-15 06:10:07 +00:00
if $data05 != 1900 then
return -1
endi
print =============== step7
sql create table t1 (ts timestamp, i bool)
sql create table t2 (ts timestamp, i smallint)
sql create table t3 (ts timestamp, i tinyint)
sql create table t4 (ts timestamp, i int)
sql create table t5 (ts timestamp, i bigint)
sql create table t6 (ts timestamp, i float)
sql create table t7 (ts timestamp, i double)
sql create table t8 (ts timestamp, i binary(10))
sql insert into t1 values(now, NULL)
sql insert into t2 values(now, NULL)
sql insert into t3 values(now, NULL)
sql insert into t4 values(now, NULL)
sql insert into t5 values(now, NULL)
sql insert into t6 values(now, NULL)
sql insert into t7 values(now, NULL)
#sql insert into t8 values(now, NULL)
#sql select * from t1
2022-08-15 06:10:07 +00:00
#if $rows != 1 then
# return -1
#endi
2022-08-15 06:10:07 +00:00
#if $data01 != NULL then
# return -1
#endi
sql select * from t2
2022-08-15 06:10:07 +00:00
if $rows != 1 then
return -1
endi
if $data01 != NULL then
return -1
endi
sql select * from t3
2022-08-15 06:10:07 +00:00
if $rows != 1 then
return -1
endi
if $data01 != NULL then
return -1
endi
sql select * from t4
2022-08-15 06:10:07 +00:00
if $rows != 1 then
return -1
endi
if $data01 != NULL then
return -1
endi
sql select * from t5
2022-08-15 06:10:07 +00:00
if $rows != 1 then
return -1
endi
if $data01 != NULL then
return -1
endi
sql select * from t6
2022-08-15 06:10:07 +00:00
if $rows != 1 then
return -1
endi
if $data01 != NULL then
return -1
endi
sql select * from t7
2022-08-15 06:10:07 +00:00
if $rows != 1 then
return -1
endi
if $data01 != NULL then
return -1
endi
#sql select * from t8
2022-08-15 06:10:07 +00:00
#if $rows != 1 then
# return -1
#endi
#if $data01 != NULL then
# return -1
#endi
print =============== clear
sql drop database $db
2022-08-11 12:26:40 +00:00
sql select * from information_schema.ins_databases
2022-08-15 06:10:07 +00:00
if $rows != 2 then
return -1
endi
2022-08-15 06:10:07 +00:00
system sh/exec.sh -n dnode1 -s stop -x SIGINT