top.sim 1.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
system sh/exec.sh -n dnode1 -s start
sql connect

$dbPrefix = m_to_db
$tbPrefix = m_to_tb
$mtPrefix = m_to_mt
$tbNum = 10
$rowNum = 20
$totalNum = 200

print =============== step1
$i = 0
$db = $dbPrefix . $i
$mt = $mtPrefix . $i

sql drop database $db -x step1
step1:
sql create database $db
sql use $db
sql create table $mt (ts timestamp, tbcol int) TAGS(tgcol int)

$i = 0
while $i < $tbNum
  $tb = $tbPrefix . $i
  sql create table $tb using $mt tags( $i )
G
Ganlin Zhao 已提交
28

29 30 31 32 33
  $x = 0
  while $x < $rowNum
    $cc = $x * 60000
    $ms = 1601481600000 + $cc

G
Ganlin Zhao 已提交
34
    sql insert into $tb values ($ms , $x )
35
    $x = $x + 1
G
Ganlin Zhao 已提交
36 37
  endw

38
  $i = $i + 1
G
Ganlin Zhao 已提交
39
endw
40 41 42 43 44 45

print =============== step2
$i = 1
$tb = $tbPrefix . $i

sql select top(tbcol, 1) from $tb
S
Shengliang Guan 已提交
46
print ===> $data00
G
Ganlin Zhao 已提交
47
if $data00 != 19 then
48 49 50 51 52 53 54 55
  return -1
endi

print =============== step3
$cc = 4 * 60000
$ms = 1601481600000 + $cc

sql select top(tbcol, 1) from $tb where ts <= $ms
S
Shengliang Guan 已提交
56
print ===> $data00
G
Ganlin Zhao 已提交
57
if $data00 != 4 then
58 59 60 61 62
  return -1
endi

print =============== step4
sql select top(tbcol, 1) as b from $tb
S
Shengliang Guan 已提交
63
print ===> $data00
G
Ganlin Zhao 已提交
64
if $data00 != 19 then
65 66 67 68
  return -1
endi

print =============== step5
G
Ganlin Zhao 已提交
69
sql select top(tbcol, 2) as b from $tb
S
Shengliang Guan 已提交
70
print ===> $data00  $data10
G
Ganlin Zhao 已提交
71
if $data00 != 18 then
72 73
  return -1
endi
G
Ganlin Zhao 已提交
74
if $data10 != 19 then
75 76 77 78 79 80 81 82
  return -1
endi

print =============== step6
$cc = 4 * 60000
$ms = 1601481600000 + $cc

sql select top(tbcol, 2) as b from $tb where ts <= $ms
S
Shengliang Guan 已提交
83
print ===> $data00  $data10
G
Ganlin Zhao 已提交
84
if $data00 != 3 then
85 86
  return -1
endi
G
Ganlin Zhao 已提交
87
if $data10 != 4 then
88 89 90 91 92 93 94 95 96
  return -1
endi

sql select top(tbcol, 122) as b from $tb -x step6
	return -1
step6:

print =============== clear
sql drop database $db
X
Xiaoyu Wang 已提交
97
sql select * from information_schema.ins_databases
G
Ganlin Zhao 已提交
98
if $rows != 2 then
99 100 101
  return -1
endi

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