basic.sim 832 字节
Newer Older
S
slguan 已提交
1 2
system sh/stop_dnodes.sh

S
slguan 已提交
3
system sh/deploy.sh -n dnode1 -i 1
4
system sh/cfg.sh -n dnode1 -c walLevel -v 1
S
slguan 已提交
5 6
system sh/exec.sh -n dnode1 -s start

H
Haojun Liao 已提交
7
sleep 2000
S
slguan 已提交
8 9 10
sql connect

$i = 0
S
TD-1894  
Shengliang Guan 已提交
11 12
$dbPrefix = d
$tbPrefix = t
S
slguan 已提交
13 14 15 16 17 18 19 20 21 22 23 24
$db = $dbPrefix . $i
$tb = $tbPrefix . $i

print =============== step1
sql drop database -x step1
step1:
sql create database $db
sql use $db
sql create table $tb (ts timestamp, speed int)

$x = 0
while $x < 10
S
TD-1894  
Shengliang Guan 已提交
25 26 27 28
  $cc = $x * 60000
  $ms = 1601481600000 + $cc
  
  sql insert into $tb values ($ms , $x ) 
S
slguan 已提交
29 30 31 32
  $x = $x + 1
endw 

print =============== step 2
S
TD-1894  
Shengliang Guan 已提交
33 34 35 36 37 38 39 40
$x = 0
while $x < 5
  $cc = $x * 60000
  $ms = 1551481600000 + $cc
  
  sql insert into $tb values ($ms , $x ) 
  $x = $x + 1
endw 
S
slguan 已提交
41 42 43 44

sql select * from $tb

print $rows points data are retrieved
S
TD-1894  
Shengliang Guan 已提交
45
if $rows != 15 then 
S
slguan 已提交
46 47
  return -1
endi
S
scripts  
slguan 已提交
48 49

system sh/exec.sh -n dnode1 -s stop -x SIGINT