block_dist.sim 2.0 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
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 )
G
Ganlin Zhao 已提交
30

31 32 33 34
  $x = 0
  while $x < $rowNum
    $cc = $x * 60000
    $ms = 1601481600000 + $cc
G
Ganlin Zhao 已提交
35
    sql insert into $tb values ($ms , $x )
36
    $x = $x + 1
G
Ganlin Zhao 已提交
37 38
  endw

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

sql create table $nt (ts timestamp, tbcol int)
$x = 0
while $x < $rowNum
    $cc = $x * 60000
    $ms = 1601481600000 + $cc
G
Ganlin Zhao 已提交
47 48
    sql insert into $nt values ($ms , $x )
    $x = $x + 1
49 50
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
84

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

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

93 94 95 96
print ============== TD-22140 & TD-22165
sql_error show table distributed information_schema.ins_databases
sql_error show table distributed performance_schema.perf_apps

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

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