top.sim 1.7 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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
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 )
  
  $x = 0
  while $x < $rowNum
    $cc = $x * 60000
    $ms = 1601481600000 + $cc

    sql insert into $tb values ($ms , $x ) 
    $x = $x + 1
  endw 
 
  $i = $i + 1
endw 

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

sql select top(tbcol, 1) from $tb
S
Shengliang Guan 已提交
46 47
print ===> $data00
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 57
print ===> $data00
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 64
print ===> $data00
if $data00 != 19 then 
65 66 67 68 69
  return -1
endi

print =============== step5
sql select top(tbcol, 2) as b from $tb 
S
Shengliang Guan 已提交
70 71
print ===> $data00  $data10
if $data00 != 18 then 
72 73
  return -1
endi
S
Shengliang Guan 已提交
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 84
print ===> $data00  $data10
if $data00 != 3 then 
85 86
  return -1
endi
S
Shengliang Guan 已提交
87
if $data10 != 4 then 
88 89 90 91 92 93 94 95 96 97
  return -1
endi

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

print =============== clear
sql drop database $db
sql show databases
S
Shengliang Guan 已提交
98
if $rows != 2 then 
99 100 101 102
  return -1
endi

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