error1.sim 1.6 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
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
system sh/exec.sh -n dnode1 -s start
system sh/deploy.sh -n dnode2 -i 2
system sh/exec.sh -n dnode2 -s start
sql connect

print ========== create dnodes
sql create dnode $hostname port 7200

$x = 0
create1:
	$x = $x + 1
	sleep 1000
	if $x == 10 then
		return -1
	endi

sql show dnodes
if $data4_2 != ready then
	goto create1
endi

print ========== stop dnode2
system sh/exec.sh -n dnode2 -s stop -x SIGKILL

X
Xiaoyu Wang 已提交
27 28
#print =============== create database
#sql_error create database d1 vgroups 4
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44

print ========== start dnode2
system sh/exec.sh -n dnode2 -s start

print =============== re-create database
$x = 0
re-create1:
	$x = $x + 1
	sleep 1000
	if $x == 10 then
		return -1
	endi

sql create database d1 vgroups 2 -x re-create1

sql show databases
45
if $rows != 3 then
46 47 48
  return -1
endi

49
if $data20 != d1 then
50 51 52
  return -1
endi

53
if $data22 != 2 then
54 55 56
  return -1
endi

57
if $data23 != 0 then
58 59 60 61 62 63
  return -1
endi

print ========== stop dnode2
system sh/exec.sh -n dnode2 -s stop -x SIGKILL

D
dapan1121 已提交
64
sleep 1000
65
print =============== drop database
66 67 68 69
sql_error drop database d1

print ========== start dnode2
system sh/exec.sh -n dnode2 -s start
X
Xiaoyu Wang 已提交
70
sleep 1000
71 72 73 74 75 76 77 78 79 80 81 82 83

print =============== re-create database
$x = 0
re-create2:
	$x = $x + 1
	sleep 1000
	if $x == 10 then
		return -1
	endi

sql create database d1 vgroups 5 -x re-create2

sql show databases
84
if $rows != 3 then
85 86 87
  return -1
endi

88
if $data20 != d1 then
89 90 91
  return -1
endi

92
if $data22 != 5 then
93 94 95
  return -1
endi

96
if $data23 != 0 then
97 98 99 100
  return -1
endi

system sh/exec.sh -n dnode1 -s stop -x SIGINT
D
dapan1121 已提交
101
system sh/exec.sh -n dnode2 -s stop -x SIGINT