block_dist.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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
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_di_db
$tbPrefix = m_di_tb
$mtPrefix = m_di_mt
$ntPrefix = m_di_nt
$tbNum = 1
$rowNum = 2000

print =============== step1
$i = 0
$db = $dbPrefix . $i
$mt = $mtPrefix . $i
$nt = $ntPrefix . $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 

sql create table $nt (ts timestamp, tbcol int)
$x = 0
while $x < $rowNum
    $cc = $x * 60000
    $ms = 1601481600000 + $cc
    sql insert into $nt values ($ms , $x ) 
    $x = $x + 1  
endw

S
Shengliang Guan 已提交
50 51
sql flush database $db

52 53 54 55
print =============== step2
$i = 0
$tb = $tbPrefix . $i

S
Shengliang Guan 已提交
56 57 58
#sql select _block_dist() from $tb
print show table distributed $tb
sql show table distributed $tb
59

S
Shengliang Guan 已提交
60 61
print $rows
if $rows == 0 then
62 63 64 65 66 67
  return -1
endi

print =============== step3
$i = 0
$mt = $mtPrefix . $i
S
Shengliang Guan 已提交
68 69 70 71
#sql select _block_dist() from $mt

print show table distributed $mt
sql show table distributed $mt
72

S
Shengliang Guan 已提交
73
if $rows == 0 then
74 75 76 77 78 79 80
  return -1
endi

print =============== step4
$i = 0
$nt = $ntPrefix . $i

S
Shengliang Guan 已提交
81 82 83
#sql select _block_dist() from $nt
print show table distributed $nt
sql show table distributed $nt
84

S
Shengliang Guan 已提交
85
if $rows == 0 then
86 87 88 89 90 91 92 93 94 95
  return -1
endi

print ============== TD-5998
sql_error select _block_dist() from (select * from $nt)
sql_error select _block_dist() from (select * from $mt)

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

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