~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl_ndb/r/rpl_ndb_circular_simplex.result

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
stop slave;
 
2
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
3
reset master;
 
4
reset slave;
 
5
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
6
start slave;
 
7
CREATE TABLE t1 (a int key, b int) ENGINE=NDB;
 
8
SHOW TABLES;
 
9
Tables_in_test
 
10
t1
 
11
RESET MASTER;
 
12
INSERT INTO t1 VALUES (1,2);
 
13
INSERT INTO t1 VALUES (2,3);
 
14
STOP SLAVE;
 
15
CHANGE MASTER TO MASTER_HOST="127.0.0.1",MASTER_PORT=SLAVE_PORT,MASTER_USER="root";
 
16
START SLAVE;
 
17
SHOW SLAVE STATUS;
 
18
Slave_IO_State  #
 
19
Master_Host     127.0.0.1
 
20
Master_User     root
 
21
Master_Port     SLAVE_PORT
 
22
Connect_Retry   60
 
23
Master_Log_File slave-bin.000001
 
24
Read_Master_Log_Pos     #
 
25
Relay_Log_File  #
 
26
Relay_Log_Pos   #
 
27
Relay_Master_Log_File   slave-bin.000001
 
28
Slave_IO_Running        Yes
 
29
Slave_SQL_Running       Yes
 
30
Replicate_Do_DB 
 
31
Replicate_Ignore_DB     
 
32
Replicate_Do_Table      
 
33
Replicate_Ignore_Table  
 
34
Replicate_Wild_Do_Table 
 
35
Replicate_Wild_Ignore_Table     
 
36
Last_Errno      0
 
37
Last_Error      
 
38
Skip_Counter    0
 
39
Exec_Master_Log_Pos     #
 
40
Relay_Log_Space #
 
41
Until_Condition None
 
42
Until_Log_File  
 
43
Until_Log_Pos   0
 
44
Master_SSL_Allowed      No
 
45
Master_SSL_CA_File      
 
46
Master_SSL_CA_Path      
 
47
Master_SSL_Cert 
 
48
Master_SSL_Cipher       
 
49
Master_SSL_Key  
 
50
Seconds_Behind_Master   #
 
51
Master_SSL_Verify_Server_Cert   No
 
52
Last_IO_Errno   #
 
53
Last_IO_Error   #
 
54
Last_SQL_Errno  0
 
55
Last_SQL_Error  
 
56
SELECT * FROM t1 ORDER BY a;
 
57
a       b
 
58
1       2
 
59
2       3
 
60
STOP SLAVE;
 
61
START SLAVE;
 
62
SELECT * FROM t1 ORDER BY a;
 
63
a       b
 
64
1       2
 
65
2       3
 
66
SHOW SLAVE STATUS;
 
67
Slave_IO_State  #
 
68
Master_Host     127.0.0.1
 
69
Master_User     root
 
70
Master_Port     MASTER_PORT
 
71
Connect_Retry   1
 
72
Master_Log_File master-bin.000001
 
73
Read_Master_Log_Pos     #
 
74
Relay_Log_File  #
 
75
Relay_Log_Pos   #
 
76
Relay_Master_Log_File   master-bin.000001
 
77
Slave_IO_Running        Yes
 
78
Slave_SQL_Running       Yes
 
79
Replicate_Do_DB 
 
80
Replicate_Ignore_DB     
 
81
Replicate_Do_Table      
 
82
Replicate_Ignore_Table  
 
83
Replicate_Wild_Do_Table 
 
84
Replicate_Wild_Ignore_Table     
 
85
Last_Errno      0
 
86
Last_Error      
 
87
Skip_Counter    0
 
88
Exec_Master_Log_Pos     #
 
89
Relay_Log_Space #
 
90
Until_Condition None
 
91
Until_Log_File  
 
92
Until_Log_Pos   0
 
93
Master_SSL_Allowed      No
 
94
Master_SSL_CA_File      
 
95
Master_SSL_CA_Path      
 
96
Master_SSL_Cert 
 
97
Master_SSL_Cipher       
 
98
Master_SSL_Key  
 
99
Seconds_Behind_Master   #
 
100
Master_SSL_Verify_Server_Cert   No
 
101
Last_IO_Errno   #
 
102
Last_IO_Error   #
 
103
Last_SQL_Errno  0
 
104
Last_SQL_Error  
 
105
DROP TABLE t1;