block_dist.sim 1.9 KB
Newer Older
1 2
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
S
Shengliang Guan 已提交
3
system sh/cfg.sh -n dnode1 -c debugflag -v 131
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 50
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 已提交
51 52
sql flush database $db

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

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

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

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

print show table distributed $mt
sql show table distributed $mt
73

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

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

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

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

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
X
Xiaoyu Wang 已提交
96
sql select * from information_schema.ins_databases
S
Shengliang Guan 已提交
97
if $rows != 2 then 
98 99 100 101
  return -1
endi

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