~ubuntu-branches/ubuntu/natty/mysql-5.1/natty-security

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl_slave_skip.result

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2010-06-21 15:31:05 UTC
  • mfrom: (1.2.1 upstream) (2.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100621153105-lv81twvjdgzvzrre
Tags: 5.1.48-1ubuntu1
* Merge from debian unstable, remaining changes:
  + debian/control:
     * Update maintainer according to spec.
     * Move section from "misc" to "database".
     * Added libmysqlclient16-dev an empty transitional package. 
     * Added mysql-client-core-5.1 package.
     * Suggest mailx for mysql-server-5.1
     * Add mysql-testsuite package so you can run the testsuite seperately.
  + debian/additions/my.cnf:
    * Remove language options. Error message files are located in a different directory in Mysql
      5.0. Setting the language option to use /usr/share/mysql/english breaks Mysql 5.0. Both 5.0
      and 5.1 use a different value that works. (LP: #316974)
  + Add apparmor profile:
    + debian/apparmor-profile: apparmor-profile
    + debian/rules, debian/mysql-server-5.1.files: install apparmor profile
    + debian/mysql-server-5.1.dirs: add etc/apparmor.d/fore-complain
    + debian/mysql-server-5.1.postrm: remove symlink in force-complain/ on purge.
    + debian/mysql-server-5.1.README.Debian: add apparmor documentation.
    + debian/additions/my.cnf: Add warning about apparmor. (LP: #201799)
    + debian/mysql-server-5.1.postinst: reload apparmor profiles
  * Convert the package from sysvinit to upstart:
    + debian/mysql-server-5.1.mysql.upstart: Add upstart script.
    + debian/mysql-server-5.1.mysql.init: Dropped, unused now with upstart.
    + debian/additions/mysqld_safe_syslog.cnf: Dropped, unused now with upstart.
    + debian/additons/my.cnf: Remove pid declaration and setup error logging to /var/log/mysql since
      we're not piping anything around logger anymore.
    + debian/rules, debian/mysql-server-5.1.logcheck.ignore.{paranoid,worstation},
      debian/mysql-server-5.1.logcheck.ignore.server: : Remove references to mysqld_safe
    + debian/patches/38_scripts_mysqld_safe.sh_signals.dpatch: Dropped
  * Added -fno-strict-aliasing to CFLAGS to get around mysql testsuite build failures.
  * Add Apport hook (LP: #354188):
    + debian/mysql-server-5.1.py: apport package hook
    + debian/rules: Make it installable
  * debian/mysql-server-5.1.mysql-server.logrotate: Check to see if mysql is running before
    running logrotate. (LP: #513135)
  * Make the testsuite installable. (LP: #530752)
    + debian/mysql-server-5.1.files, debian/rules: install apport package hook
  * debian/mysql-server-5.1.preinst: Set mysql user's home directory
    to /nonexistent to protect against having the /var/lib/mysql
    user-writeable. If an attacker can trick mysqld into creating
    dot files in the home directory, he could do .rhost-like attacks
    on the system. (LP: #293258)
  * debian/control: mysql-client-5.1 should depend on mysql-core-client-5.1.
    (LP: #590952) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
2       8
43
43
3       18
44
44
**** On Slave ****
45
 
START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=762;
46
 
SHOW SLAVE STATUS;
47
 
Slave_IO_State  #
48
 
Master_Host     127.0.0.1
49
 
Master_User     root
50
 
Master_Port     MASTER_PORT
51
 
Connect_Retry   1
52
 
Master_Log_File master-bin.000001
53
 
Read_Master_Log_Pos     1115
54
 
Relay_Log_File  #
55
 
Relay_Log_Pos   #
56
 
Relay_Master_Log_File   master-bin.000001
57
 
Slave_IO_Running        Yes
58
 
Slave_SQL_Running       No
59
 
Replicate_Do_DB 
60
 
Replicate_Ignore_DB     
61
 
Replicate_Do_Table      
62
 
Replicate_Ignore_Table  
63
 
Replicate_Wild_Do_Table 
64
 
Replicate_Wild_Ignore_Table     
65
 
Last_Errno      0
66
 
Last_Error      
67
 
Skip_Counter    0
68
 
Exec_Master_Log_Pos     762
69
 
Relay_Log_Space #
70
 
Until_Condition Master
71
 
Until_Log_File  master-bin.000001
72
 
Until_Log_Pos   762
73
 
Master_SSL_Allowed      No
74
 
Master_SSL_CA_File      
75
 
Master_SSL_CA_Path      
76
 
Master_SSL_Cert 
77
 
Master_SSL_Cipher       
78
 
Master_SSL_Key  
79
 
Seconds_Behind_Master   #
80
 
Master_SSL_Verify_Server_Cert   No
81
 
Last_IO_Errno   #
82
 
Last_IO_Error   #
83
 
Last_SQL_Errno  0
84
 
Last_SQL_Error  
 
45
START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=MASTER_LOG_POS;
85
46
SET GLOBAL SQL_SLAVE_SKIP_COUNTER=1;
86
47
START SLAVE;
87
48
SELECT * FROM t1;
104
65
Log_name        Pos     Event_type      Server_id       End_log_pos     Info
105
66
master-bin.000001       #       User var        #       #       @`foo`=12
106
67
master-bin.000001       #       Query   #       #       use `test`; INSERT INTO t1 VALUES(@foo, 2*@foo)
107
 
START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=106;
 
68
START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=MASTER_LOG_POS;
108
69
SET GLOBAL SQL_SLAVE_SKIP_COUNTER=1;
109
70
START SLAVE;
110
 
SHOW SLAVE STATUS;
111
 
Slave_IO_State  #
112
 
Master_Host     127.0.0.1
113
 
Master_User     root
114
 
Master_Port     MASTER_PORT
115
 
Connect_Retry   1
116
 
Master_Log_File master-bin.000001
117
 
Read_Master_Log_Pos     248
118
 
Relay_Log_File  #
119
 
Relay_Log_Pos   #
120
 
Relay_Master_Log_File   master-bin.000001
121
 
Slave_IO_Running        Yes
122
 
Slave_SQL_Running       Yes
123
 
Replicate_Do_DB 
124
 
Replicate_Ignore_DB     
125
 
Replicate_Do_Table      
126
 
Replicate_Ignore_Table  
127
 
Replicate_Wild_Do_Table 
128
 
Replicate_Wild_Ignore_Table     
129
 
Last_Errno      0
130
 
Last_Error      
131
 
Skip_Counter    0
132
 
Exec_Master_Log_Pos     248
133
 
Relay_Log_Space #
134
 
Until_Condition None
135
 
Until_Log_File  
136
 
Until_Log_Pos   0
137
 
Master_SSL_Allowed      No
138
 
Master_SSL_CA_File      
139
 
Master_SSL_CA_Path      
140
 
Master_SSL_Cert 
141
 
Master_SSL_Cipher       
142
 
Master_SSL_Key  
143
 
Seconds_Behind_Master   #
144
 
Master_SSL_Verify_Server_Cert   No
145
 
Last_IO_Errno   #
146
 
Last_IO_Error   #
147
 
Last_SQL_Errno  0
148
 
Last_SQL_Error  
149
71
**** On Master ****
150
72
DROP TABLE t1, t2;
151
73
SET SESSION BINLOG_FORMAT=ROW;