From b549f121ace257cf8386933f5d41347861a7401c Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Tue, 26 May 2020 14:47:21 +0800 Subject: [PATCH] [td-225]update the sim script --- tests/script/general/parser/where.sim | 78 ++++++++++++++------------- 1 file changed, 41 insertions(+), 37 deletions(-) diff --git a/tests/script/general/parser/where.sim b/tests/script/general/parser/where.sim index de2312f2b9..171c03b357 100644 --- a/tests/script/general/parser/where.sim +++ b/tests/script/general/parser/where.sim @@ -1,10 +1,10 @@ -system sh/stop_dnodes.sh - -system sh/deploy.sh -n dnode1 -i 1 -system sh/cfg.sh -n dnode1 -c walLevel -v 0 -system sh/exec.sh -n dnode1 -s start - -sleep 3000 +#system sh/stop_dnodes.sh +# +#system sh/deploy.sh -n dnode1 -i 1 +#system sh/cfg.sh -n dnode1 -c walLevel -v 0 +#system sh/exec.sh -n dnode1 -s start +# +#sleep 3000 sql connect $dbPrefix = wh_db @@ -13,39 +13,39 @@ $mtPrefix = wh_mt $tbNum = 10 $rowNum = 10000 $totalNum = $tbNum * $rowNum - -print =============== where.sim +# +#print =============== where.sim $i = 0 $db = $dbPrefix . $i $mt = $mtPrefix . $i - -sql drop database if exits $db -x step1 -step1: +# +#sql drop database if exits $db -x step1 +#step1: sql create database if not exists $db maxTables 4 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) - -$i = 0 -while $i < $tbNum - $tb = $tbPrefix . $i - sql create table $tb using $mt tags( $i ) - - $x = 0 - while $x < $rowNum - $ms = $x . m - $c = $x / 100 - $c = $c * 100 - $c = $x - $c - $binary = 'binary . $c - $binary = $binary . ' - $nchar = 'nchar . $c - $nchar = $nchar . ' - sql insert into $tb values (now + $ms , $c , $c , $c , $c , $c , $c , $c , $binary , $nchar ) - $x = $x + 1 - endw - - $i = $i + 1 -endw +#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 +#while $i < $tbNum +# $tb = $tbPrefix . $i +# sql create table $tb using $mt tags( $i ) +# +# $x = 0 +# while $x < $rowNum +# $ms = $x . m +# $c = $x / 100 +# $c = $c * 100 +# $c = $x - $c +# $binary = 'binary . $c +# $binary = $binary . ' +# $nchar = 'nchar . $c +# $nchar = $nchar . ' +# sql insert into $tb values (now + $ms , $c , $c , $c , $c , $c , $c , $c , $binary , $nchar ) +# $x = $x + 1 +# endw +# +# $i = $i + 1 +#endw sleep 100 @@ -78,12 +78,16 @@ sql select tbname from $mt where t1 < 2 if $rows != 2 then return -1 endi + +print $tbPrefix $tb = $tbPrefix . 0 -if $data00 != $tb then +if $data00 != wh_tb1 then + print expect wh_tb1, actual:$data00 return -1 endi $tb = $tbPrefix . 1 -if $data10 != $tb then +if $data10 != wh_tb0 then + print expect wh_tb0, actual:$data00 return -1 endi -- GitLab