提交 b549f121 编写于 作者: H Haojun Liao

[td-225]update the sim script

上级 7cbff7c2
system sh/stop_dnodes.sh #system sh/stop_dnodes.sh
#
system sh/deploy.sh -n dnode1 -i 1 #system sh/deploy.sh -n dnode1 -i 1
system sh/cfg.sh -n dnode1 -c walLevel -v 0 #system sh/cfg.sh -n dnode1 -c walLevel -v 0
system sh/exec.sh -n dnode1 -s start #system sh/exec.sh -n dnode1 -s start
#
sleep 3000 #sleep 3000
sql connect sql connect
$dbPrefix = wh_db $dbPrefix = wh_db
...@@ -13,39 +13,39 @@ $mtPrefix = wh_mt ...@@ -13,39 +13,39 @@ $mtPrefix = wh_mt
$tbNum = 10 $tbNum = 10
$rowNum = 10000 $rowNum = 10000
$totalNum = $tbNum * $rowNum $totalNum = $tbNum * $rowNum
#
print =============== where.sim #print =============== where.sim
$i = 0 $i = 0
$db = $dbPrefix . $i $db = $dbPrefix . $i
$mt = $mtPrefix . $i $mt = $mtPrefix . $i
#
sql drop database if exits $db -x step1 #sql drop database if exits $db -x step1
step1: #step1:
sql create database if not exists $db maxTables 4 sql create database if not exists $db maxTables 4
sql use $db sql use $db
sql create table $mt (ts timestamp, c1 int, c2 float, c3 bigint, c4 smallint, c5 tinyint, c6 double, c7 bool, c8 binary(10), c9 nchar(9)) TAGS(t1 int) #sql create table $mt (ts timestamp, c1 int, c2 float, c3 bigint, c4 smallint, c5 tinyint, c6 double, c7 bool, c8 binary(10), c9 nchar(9)) TAGS(t1 int)
#
$i = 0 #$i = 0
while $i < $tbNum #while $i < $tbNum
$tb = $tbPrefix . $i # $tb = $tbPrefix . $i
sql create table $tb using $mt tags( $i ) # sql create table $tb using $mt tags( $i )
#
$x = 0 # $x = 0
while $x < $rowNum # while $x < $rowNum
$ms = $x . m # $ms = $x . m
$c = $x / 100 # $c = $x / 100
$c = $c * 100 # $c = $c * 100
$c = $x - $c # $c = $x - $c
$binary = 'binary . $c # $binary = 'binary . $c
$binary = $binary . ' # $binary = $binary . '
$nchar = 'nchar . $c # $nchar = 'nchar . $c
$nchar = $nchar . ' # $nchar = $nchar . '
sql insert into $tb values (now + $ms , $c , $c , $c , $c , $c , $c , $c , $binary , $nchar ) # sql insert into $tb values (now + $ms , $c , $c , $c , $c , $c , $c , $c , $binary , $nchar )
$x = $x + 1 # $x = $x + 1
endw # endw
#
$i = $i + 1 # $i = $i + 1
endw #endw
sleep 100 sleep 100
...@@ -78,12 +78,16 @@ sql select tbname from $mt where t1 < 2 ...@@ -78,12 +78,16 @@ sql select tbname from $mt where t1 < 2
if $rows != 2 then if $rows != 2 then
return -1 return -1
endi endi
print $tbPrefix
$tb = $tbPrefix . 0 $tb = $tbPrefix . 0
if $data00 != $tb then if $data00 != wh_tb1 then
print expect wh_tb1, actual:$data00
return -1 return -1
endi endi
$tb = $tbPrefix . 1 $tb = $tbPrefix . 1
if $data10 != $tb then if $data10 != wh_tb0 then
print expect wh_tb0, actual:$data00
return -1 return -1
endi endi
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册