bottom.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_bo_db
$tbPrefix = m_bo_tb
$mtPrefix = m_bo_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 bottom(tbcol, 1) from $tb
S
Shengliang Guan 已提交
46
print ===> $data00
G
Ganlin Zhao 已提交
47
if $data00 != 0 then
48 49 50 51 52 53 54
  return -1
endi

print =============== step3
$cc = 4 * 60000
$ms = 1601481600000 + $cc
sql select bottom(tbcol, 1) from $tb where ts > $ms
S
Shengliang Guan 已提交
55
print ===> $data00
G
Ganlin Zhao 已提交
56
if $data00 != 5 then
57 58 59 60 61
  return -1
endi

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

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

print =============== step6
$cc = 4 * 60000
$ms = 1601481600000 + $cc
sql select bottom(tbcol, 2) as b from $tb where ts > $ms
S
Shengliang Guan 已提交
81
print ===> $data00  $data10
G
Ganlin Zhao 已提交
82
if $data00 != 6 then
83 84
  return -1
endi
G
Ganlin Zhao 已提交
85
if $data10 != 5 then
86 87 88 89 90 91 92 93 94
  return -1
endi

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

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

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