first_last.sim 2.0 KB
Newer Older
S
slguan 已提交
1
system sh/stop_dnodes.sh
S
slguan 已提交
2 3

system sh/deploy.sh -n dnode1 -i 1
H
hjxilinx 已提交
4
system sh/cfg.sh -n dnode1 -c walLevel -v 0
S
slguan 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
system sh/exec.sh -n dnode1 -s start
sleep 3000
sql connect

$dbPrefix = first_db
$tbPrefix = first_tb
$stbPrefix = first_stb
$tbNum = 10
$rowNum = 1000
$totalNum = $tbNum * $rowNum
$ts0 = 1537146000000
$delta = 60000
print ========== first_last.sim
$i = 0
$db = $dbPrefix . $i
$stb = $stbPrefix . $i

sql drop database $db -x step1
step1:
S
scripts  
slguan 已提交
24
sql create database $db rows 400 cache 4096 maxTables 4
S
slguan 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
sql use $db
sql create table $stb (ts timestamp, c1 int, c2 bigint, c3 float, c4 double, c5 smallint, c6 tinyint, c7 bool, c8 binary(10), c9 nchar(10)) tags(t1 int)

$i = 0
$ts = $ts0
while $i < $tbNum
  $tb = $tbPrefix . $i
  sql create table $tb using $stb tags( $i )
  
  $x = 0
  while $x < $rowNum
    $xs = $x * $delta
    $ts = $ts0 + $xs
    $c6 =  $x / 128 
    $c6 = $c6 * 128
    $c6 = $x - $c6
    sql insert into $tb values ( $ts , $x , $x , $x , $x , $x , $c6 , true, 'BINARY', 'NCHAR' ) 
    $x = $x + 1
  endw 
 
  $i = $i + 1
endw 
$ts = $ts + 60000
$tb = $tbPrefix . 0
sql insert into $tb (ts) values ( $ts )
$tb = $tbPrefix . 1
sql insert into $tb (ts) values ( $ts )
$tb = $tbPrefix . 2
sql insert into $tb (ts) values ( $ts )
$tb = $tbPrefix . 3
sql insert into $tb (ts) values ( $ts )
$tb = $tbPrefix . 4
sql insert into $tb (ts) values ( $ts )
$ts = $ts0 - 60000
$tb = $tbPrefix . 0
sql import into $tb (ts) values ( $ts )
$tb = $tbPrefix . 1
sql import into $tb (ts) values ( $ts )
$tb = $tbPrefix . 2
sql import into $tb (ts) values ( $ts )
$tb = $tbPrefix . 3
sql import into $tb (ts) values ( $ts )
$tb = $tbPrefix . 4
sql import into $tb (ts) values ( $ts )

print ====== test data created

S
scripts  
slguan 已提交
72
run general/parser/first_last_query.sim
S
slguan 已提交
73 74 75 76 77 78 79 80 81

print ================== restart server to commit data into disk
system sh/exec.sh -n dnode1 -s stop -x SIGINT
sleep 3000
system sh/exec.sh -n dnode1 -s start
print ================== server restart completed
sql connect
sleep 3000

S
scripts  
slguan 已提交
82
run general/parser/first_last_query.sim
S
slguan 已提交
83