query_multi_file.sim 816 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
system sh/exec.sh -n dnode1 -s start
sql connect

$i = 0
$dbPrefix = tb_mf_db
$tbPrefix = tb_mf_tb
$db = $dbPrefix . $i
$tb = $tbPrefix . $i

print =============== step1
sql drop database -x step1
step1:
sql create database $db
sql use $db

G
Ganlin Zhao 已提交
18
sql create table $tb (ts timestamp, speed int)
19 20 21 22 23 24

$N = 20000

$x = 0

while $x < $N
G
Ganlin Zhao 已提交
25
  $ms = $x . s
26 27 28
  #print insert into $tb values (now + $ms , $x )
  sql insert into $tb values (now + $ms , $x ) -x error_insert
  $x = $x + 1
G
Ganlin Zhao 已提交
29
endw
30 31 32 33 34 35 36 37 38
error_insert:

sql select * from $tb
print $rows points data are retrieved -> exepct $N rows
if $rows < $N then
  return -1
endi

sql drop database $db
X
Xiaoyu Wang 已提交
39
sql select * from information_schema.ins_databases
G
Ganlin Zhao 已提交
40
if $rows != 2 then
41 42 43
  return -1
endi

G
Ganlin Zhao 已提交
44
system sh/exec.sh -n dnode1 -s stop -x SIGINT