[Pkg-mysql-commits] r2247 - in mysql-5.5/branches/unstable/debian: . patches
James Downing Page
jamespage at moszumanska.debian.org
Fri Jan 17 15:59:24 UTC 2014
tags 732306 pending
thanks
Author: jamespage
Date: 2014-01-17 15:59:24 +0000 (Fri, 17 Jan 2014)
New Revision: 2247
Removed:
mysql-5.5/branches/unstable/debian/patches/fix-racey-rpltests.patch
Modified:
mysql-5.5/branches/unstable/debian/changelog
mysql-5.5/branches/unstable/debian/patches/33_scripts__mysql_create_system_tables__no_test.patch
mysql-5.5/branches/unstable/debian/patches/50_mysql-test__db_test.patch
mysql-5.5/branches/unstable/debian/patches/series
Log:
* Drop creation of insecure database permissions (Closes: #732306):
- d/p/33_scripts__mysql_create_system_tables__no_test.patch,
* New upstream release:
- d/p/fix-racey-rpltests.patch: Dropped - no longer required.
- d/p/50_mysql-test__db_test.patch: Add extra permissions to
mysql-run-tests.pl for test_% accounts, fixing failing tests.
- d/p/*: Refreshed patches.
Modified: mysql-5.5/branches/unstable/debian/changelog
===================================================================
--- mysql-5.5/branches/unstable/debian/changelog 2013-11-04 18:12:47 UTC (rev 2246)
+++ mysql-5.5/branches/unstable/debian/changelog 2014-01-17 15:59:24 UTC (rev 2247)
@@ -1,12 +1,21 @@
-mysql-5.5 (5.5.33+dfsg-2) UNRELEASED; urgency=low
+mysql-5.5 (5.5.35+dfsg-1) UNRELEASED; urgency=low
- * d/p/33_scripts__mysql_create_system_tables__no_test.patch,
- d/p/41_scripts__mysql_install_db.sh__no_test.patch,
- d/p/50_mysql-test__db_test.patch: Restored from mysql-5.1
- package, inadvertently dropped in 5.5 transition. This
- removes the global anonymous access to the database which
- is a security concern.
+ [ Clint Byrum ]
+ * Drop creation of insecure database permissions (Closes: #732306):
+ - d/p/33_scripts__mysql_create_system_tables__no_test.patch,
+ d/p/41_scripts__mysql_install_db.sh__no_test.patch,
+ d/p/50_mysql-test__db_test.patch: Restored from mysql-5.1
+ package, inadvertently dropped in 5.5 transition. This
+ removes the global anonymous access to the database which
+ is a security concern.
+ [ James Page ]
+ * New upstream release:
+ - d/p/fix-racey-rpltests.patch: Dropped - no longer required.
+ - d/p/50_mysql-test__db_test.patch: Add extra permissions to
+ mysql-run-tests.pl for test_% accounts, fixing failing tests.
+ - d/p/*: Refreshed patches.
+
-- Clint Byrum <spamaps at debian.org> Thu, 26 Sep 2013 18:51:57 -0700
mysql-5.5 (5.5.33+dfsg-1) unstable; urgency=low
Modified: mysql-5.5/branches/unstable/debian/patches/33_scripts__mysql_create_system_tables__no_test.patch
===================================================================
--- mysql-5.5/branches/unstable/debian/patches/33_scripts__mysql_create_system_tables__no_test.patch 2013-11-04 18:12:47 UTC (rev 2246)
+++ mysql-5.5/branches/unstable/debian/patches/33_scripts__mysql_create_system_tables__no_test.patch 2014-01-17 15:59:24 UTC (rev 2247)
@@ -1,10 +1,8 @@
From: ch at debian.org
-Index: mysql-5.5-5.5.33+dfsg/scripts/mysql_system_tables_data.sql
-===================================================================
---- mysql-5.5-5.5.33+dfsg.orig/scripts/mysql_system_tables_data.sql 2013-09-26 18:55:38.493379938 -0700
-+++ mysql-5.5-5.5.33+dfsg/scripts/mysql_system_tables_data.sql 2013-09-26 18:57:03.496458388 -0700
-@@ -31,8 +31,6 @@
+--- a/scripts/mysql_system_tables_data.sql
++++ b/scripts/mysql_system_tables_data.sql
+@@ -30,8 +30,6 @@ SELECT LOWER( REPLACE((SELECT REPLACE(@@
-- Fill "db" table with default grants for anyone to
-- access database 'test' and 'test_%' if "db" table didn't exist
CREATE TEMPORARY TABLE tmp_db LIKE db;
@@ -13,12 +11,12 @@
INSERT INTO db SELECT * FROM tmp_db WHERE @had_db_table=0;
DROP TABLE tmp_db;
-@@ -44,8 +42,6 @@
- REPLACE INTO tmp_user SELECT @current_hostname,'root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0,'','' FROM dual WHERE LOWER( @current_hostname) != 'localhost';
+@@ -43,8 +41,6 @@ INSERT INTO tmp_user VALUES ('localhost'
+ REPLACE INTO tmp_user SELECT @current_hostname,'root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0,'','' FROM dual WHERE @current_hostname != 'localhost';
REPLACE INTO tmp_user VALUES ('127.0.0.1','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0,'','');
REPLACE INTO tmp_user VALUES ('::1','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0,'','');
-INSERT INTO tmp_user (host,user) VALUES ('localhost','');
--INSERT INTO tmp_user (host,user) SELECT @current_hostname,'' FROM dual WHERE LOWER(@current_hostname ) != 'localhost';
+-INSERT INTO tmp_user (host,user) SELECT @current_hostname,'' FROM dual WHERE @current_hostname != 'localhost';
INSERT INTO user SELECT * FROM tmp_user WHERE @had_user_table=0;
DROP TABLE tmp_user;
Modified: mysql-5.5/branches/unstable/debian/patches/50_mysql-test__db_test.patch
===================================================================
--- mysql-5.5/branches/unstable/debian/patches/50_mysql-test__db_test.patch 2013-11-04 18:12:47 UTC (rev 2246)
+++ mysql-5.5/branches/unstable/debian/patches/50_mysql-test__db_test.patch 2014-01-17 15:59:24 UTC (rev 2247)
@@ -2,17 +2,15 @@
Description: restores the rights for anybody to connect to the test
database so that the test suite can function properly.
-Index: mysql-5.5-5.5.33+dfsg/mysql-test/mysql-test-run.pl
-===================================================================
---- mysql-5.5-5.5.33+dfsg.orig/mysql-test/mysql-test-run.pl 2013-09-26 18:57:40.686303901 -0700
-+++ mysql-5.5-5.5.33+dfsg/mysql-test/mysql-test-run.pl 2013-09-26 18:57:40.682304133 -0700
-@@ -3355,6 +3355,10 @@
+--- a/mysql-test/mysql-test-run.pl
++++ b/mysql-test/mysql-test-run.pl
+@@ -3355,6 +3355,10 @@ sub mysql_install_db {
mtr_appendfile_to_file("$sql_dir/mysql_system_tables_data.sql",
$bootstrap_sql_file);
+ mtr_tofile($bootstrap_sql_file, "-- Debian removed the default privileges on the 'test' database\n");
+ mtr_tofile($bootstrap_sql_file, "INSERT INTO mysql.db VALUES ('%','test','','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','N','N','Y','Y');\n");
-+
++ mtr_tofile($bootstrap_sql_file, "INSERT INTO mysql.db VALUES ('%','test\\_%','','Y','Y','Y','Y','Y','Y','N','Y','Y','Y','Y','Y','Y','Y','Y','N','N','Y','Y');\n");
+
# Add test data for timezone - this is just a subset, on a real
# system these tables will be populated either by mysql_tzinfo_to_sql
Deleted: mysql-5.5/branches/unstable/debian/patches/fix-racey-rpltests.patch
===================================================================
--- mysql-5.5/branches/unstable/debian/patches/fix-racey-rpltests.patch 2013-11-04 18:12:47 UTC (rev 2246)
+++ mysql-5.5/branches/unstable/debian/patches/fix-racey-rpltests.patch 2014-01-17 15:59:24 UTC (rev 2247)
@@ -1,249 +0,0 @@
-From: Norvald Ryeng <norvald.ryeng at oracle.com>
-Description: Fix tests racing with temp table cleanup.
-Bug: http://bugs.mysql.com/bug.php?id=69458
-
-diff -rpu a/mysql-test/extra/rpl_tests/rpl_drop_create_temp_table.inc b/mysql-test/extra/rpl_tests/rpl_drop_create_temp_table.inc
---- a/mysql-test/extra/rpl_tests/rpl_drop_create_temp_table.inc 2013-07-15 14:01:49.000000000 +0200
-+++ b/mysql-test/extra/rpl_tests/rpl_drop_create_temp_table.inc 2013-09-23 17:17:56.192985008 +0200
-@@ -150,10 +150,9 @@ if (`SELECT HEX(@commands) = HEX('config
- }
-
- #
--# Drops tables and synchronizes master and slave. Note that temporary
--# tables are not explitcily dropped as they will be dropped while
--# closing the connection.
-+# Drops tables and synchronizes master and slave.
- #
-+
- if (`SELECT HEX(@commands) = HEX('clean')`)
- {
- connection master;
-@@ -162,10 +161,15 @@ if (`SELECT HEX(@commands) = HEX('clean'
-
- DROP TABLE IF EXISTS nt_xx_1;
-
-+ DROP TEMPORARY TABLE IF EXISTS tt_tmp_xx_1;
-+ DROP TEMPORARY TABLE IF EXISTS nt_tmp_xx_1;
-+
- --let $n= $tot_table
- while ($n)
- {
- --eval DROP TABLE IF EXISTS nt_$n
-+ --eval DROP TEMPORARY TABLE IF EXISTS tt_tmp_$n
-+ --eval DROP TEMPORARY TABLE IF EXISTS nt_tmp_$n
- --dec $n
- }
-
-diff -rpu a/mysql-test/extra/rpl_tests/rpl_innodb.test b/mysql-test/extra/rpl_tests/rpl_innodb.test
---- a/mysql-test/extra/rpl_tests/rpl_innodb.test 2013-07-15 14:01:49.000000000 +0200
-+++ b/mysql-test/extra/rpl_tests/rpl_innodb.test 2013-09-23 17:17:56.192985008 +0200
-@@ -112,7 +112,7 @@ FLUSH LOGS;
- --echo -------- switch to master --------
- connection master;
- FLUSH LOGS;
--
-+DROP TEMPORARY TABLE IF EXISTS mysqltest1.tmp2;
- DROP DATABASE mysqltest1;
-
- --echo End of 5.1 tests
-diff -rpu a/mysql-test/extra/rpl_tests/rpl_reset_slave.test b/mysql-test/extra/rpl_tests/rpl_reset_slave.test
---- a/mysql-test/extra/rpl_tests/rpl_reset_slave.test 2013-07-15 14:01:49.000000000 +0200
-+++ b/mysql-test/extra/rpl_tests/rpl_reset_slave.test 2013-09-23 17:17:56.192985008 +0200
-@@ -38,6 +38,9 @@ reset slave;
- source include/start_slave.inc;
- sync_with_master;
- show status like 'slave_open_temp_tables';
-+connection master;
-+drop temporary table if exists t1;
-+sync_slave_with_master;
-
- #
- #Bug#34654 RESET SLAVE does not clear LAST_IO_Err*
-diff -rpu a/mysql-test/include/mtr_check.sql b/mysql-test/include/mtr_check.sql
---- a/mysql-test/include/mtr_check.sql 2013-07-15 14:01:49.000000000 +0200
-+++ b/mysql-test/include/mtr_check.sql 2013-09-23 17:17:56.192985008 +0200
-@@ -72,6 +72,8 @@ BEGIN
- mysql.time_zone_transition_type,
- mysql.user;
-
-+ show status like 'slave_open_temp_tables';
-+
- END||
-
- --
-diff -rpu a/mysql-test/suite/rpl/r/rpl_create_tmp_table_if_not_exists.result b/mysql-test/suite/rpl/r/rpl_create_tmp_table_if_not_exists.result
---- a/mysql-test/suite/rpl/r/rpl_create_tmp_table_if_not_exists.result 2013-07-15 14:01:49.000000000 +0200
-+++ b/mysql-test/suite/rpl/r/rpl_create_tmp_table_if_not_exists.result 2013-09-23 17:19:55.288988163 +0200
-@@ -15,4 +15,7 @@ master-bin.000001 # Query # # use `test`
- master-bin.000001 # Query # # use `test`; CREATE TEMPORARY TABLE IF NOT EXISTS tmp1 LIKE tmp
- master-bin.000001 # Query # # use `test`; CREATE TEMPORARY TABLE IF NOT EXISTS tmp1 LIKE tmp
- master-bin.000001 # Query # # use `test`; CREATE TEMPORARY TABLE IF NOT EXISTS tmp2 SELECT * FROM tmp
-+DROP TEMPORARY TABLE IF EXISTS tmp;
-+DROP TEMPORARY TABLE IF EXISTS tmp1;
-+DROP TEMPORARY TABLE IF EXISTS tmp2;
- include/rpl_end.inc
-diff -rpu a/mysql-test/suite/rpl/r/rpl_mixed_ddl_dml.result b/mysql-test/suite/rpl/r/rpl_mixed_ddl_dml.result
---- a/mysql-test/suite/rpl/r/rpl_mixed_ddl_dml.result 2013-07-15 14:01:49.000000000 +0200
-+++ b/mysql-test/suite/rpl/r/rpl_mixed_ddl_dml.result 2013-09-23 17:17:56.192985008 +0200
-@@ -42,4 +42,5 @@ t5 CREATE TABLE `t5` (
- `created` datetime DEFAULT NULL
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1
- drop table t2,t3,t5;
-+drop temporary table if exists t4;
- include/rpl_end.inc
-diff -rpu a/mysql-test/suite/rpl/r/rpl_mixed_drop_create_temp_table.result b/mysql-test/suite/rpl/r/rpl_mixed_drop_create_temp_table.result
---- a/mysql-test/suite/rpl/r/rpl_mixed_drop_create_temp_table.result 2013-07-15 14:01:49.000000000 +0200
-+++ b/mysql-test/suite/rpl/r/rpl_mixed_drop_create_temp_table.result 2013-09-23 17:17:56.192985008 +0200
-@@ -1554,8 +1554,14 @@ master-bin.000001 # Query # # COMMIT
- SET @commands= 'clean';
- DROP TABLE IF EXISTS tt_xx_1;
- DROP TABLE IF EXISTS nt_xx_1;
-+DROP TEMPORARY TABLE IF EXISTS tt_tmp_xx_1;
-+DROP TEMPORARY TABLE IF EXISTS nt_tmp_xx_1;
- DROP TABLE IF EXISTS nt_2;
-+DROP TEMPORARY TABLE IF EXISTS tt_tmp_2;
-+DROP TEMPORARY TABLE IF EXISTS nt_tmp_2;
- DROP TABLE IF EXISTS nt_1;
-+DROP TEMPORARY TABLE IF EXISTS tt_tmp_1;
-+DROP TEMPORARY TABLE IF EXISTS nt_tmp_1;
- DROP TABLE IF EXISTS tt_2;
- DROP TABLE IF EXISTS tt_1;
- SET @commands= '';
-diff -rpu a/mysql-test/suite/rpl/r/rpl_rotate_logs.result b/mysql-test/suite/rpl/r/rpl_rotate_logs.result
---- a/mysql-test/suite/rpl/r/rpl_rotate_logs.result 2013-07-15 14:01:49.000000000 +0200
-+++ b/mysql-test/suite/rpl/r/rpl_rotate_logs.result 2013-09-23 17:17:56.192985008 +0200
-@@ -85,6 +85,7 @@ lock tables t3 read;
- include/assert.inc [Table t3 should contain 100 lines on the slave]
- unlock tables;
- drop table if exists t1,t2,t3,t4;
-+drop temporary table temp_table;
- End of 4.1 tests
- show binlog events in 'non existing_binlog_file';
- ERROR HY000: Error when executing command SHOW BINLOG EVENTS: Could not find target log
-diff -rpu a/mysql-test/suite/rpl/r/rpl_row_drop_create_temp_table.result b/mysql-test/suite/rpl/r/rpl_row_drop_create_temp_table.result
---- a/mysql-test/suite/rpl/r/rpl_row_drop_create_temp_table.result 2013-07-15 14:01:49.000000000 +0200
-+++ b/mysql-test/suite/rpl/r/rpl_row_drop_create_temp_table.result 2013-09-23 17:49:08.116647381 +0200
-@@ -1619,8 +1619,14 @@ master-bin.000001 # Query # # COMMIT
- SET @commands= 'clean';
- DROP TABLE IF EXISTS tt_xx_1;
- DROP TABLE IF EXISTS nt_xx_1;
-+DROP TEMPORARY TABLE IF EXISTS tt_tmp_xx_1;
-+DROP TEMPORARY TABLE IF EXISTS nt_tmp_xx_1;
- DROP TABLE IF EXISTS nt_2;
-+DROP TEMPORARY TABLE IF EXISTS tt_tmp_2;
-+DROP TEMPORARY TABLE IF EXISTS nt_tmp_2;
- DROP TABLE IF EXISTS nt_1;
-+DROP TEMPORARY TABLE IF EXISTS tt_tmp_1;
-+DROP TEMPORARY TABLE IF EXISTS nt_tmp_1;
- DROP TABLE IF EXISTS tt_2;
- DROP TABLE IF EXISTS tt_1;
- SET @commands= '';
-diff -rpu a/mysql-test/suite/rpl/r/rpl_row_reset_slave.result b/mysql-test/suite/rpl/r/rpl_row_reset_slave.result
---- a/mysql-test/suite/rpl/r/rpl_row_reset_slave.result 2013-07-15 14:01:49.000000000 +0200
-+++ b/mysql-test/suite/rpl/r/rpl_row_reset_slave.result 2013-09-23 17:44:43.347950788 +0200
-@@ -23,6 +23,7 @@ include/start_slave.inc
- show status like 'slave_open_temp_tables';
- Variable_name Value
- Slave_open_temp_tables 0
-+drop temporary table if exists t1;
- include/stop_slave.inc
- reset slave;
- include/check_slave_no_error.inc
-diff -rpu a/mysql-test/suite/rpl/r/rpl_stm_000001.result b/mysql-test/suite/rpl/r/rpl_stm_000001.result
---- a/mysql-test/suite/rpl/r/rpl_stm_000001.result 2013-07-15 14:01:49.000000000 +0200
-+++ b/mysql-test/suite/rpl/r/rpl_stm_000001.result 2013-09-23 17:17:56.192985008 +0200
-@@ -48,6 +48,7 @@ select (@id := id) - id from t2;
- 0
- kill @id;
- drop table t2;
-+drop temporary table if exists t3;
- Got one of the listed errors
- include/wait_for_slave_sql_error_and_skip.inc [errno=1053]
- select count(*) from t1;
-diff -rpu a/mysql-test/suite/rpl/r/rpl_stm_drop_create_temp_table.result b/mysql-test/suite/rpl/r/rpl_stm_drop_create_temp_table.result
---- a/mysql-test/suite/rpl/r/rpl_stm_drop_create_temp_table.result 2013-07-15 14:01:49.000000000 +0200
-+++ b/mysql-test/suite/rpl/r/rpl_stm_drop_create_temp_table.result 2013-09-23 17:17:56.192985008 +0200
-@@ -1604,8 +1604,14 @@ master-bin.000001 # Query # # ROLLBACK
- SET @commands= 'clean';
- DROP TABLE IF EXISTS tt_xx_1;
- DROP TABLE IF EXISTS nt_xx_1;
-+DROP TEMPORARY TABLE IF EXISTS tt_tmp_xx_1;
-+DROP TEMPORARY TABLE IF EXISTS nt_tmp_xx_1;
- DROP TABLE IF EXISTS nt_2;
-+DROP TEMPORARY TABLE IF EXISTS tt_tmp_2;
-+DROP TEMPORARY TABLE IF EXISTS nt_tmp_2;
- DROP TABLE IF EXISTS nt_1;
-+DROP TEMPORARY TABLE IF EXISTS tt_tmp_1;
-+DROP TEMPORARY TABLE IF EXISTS nt_tmp_1;
- DROP TABLE IF EXISTS tt_2;
- DROP TABLE IF EXISTS tt_1;
- SET @commands= '';
-diff -rpu a/mysql-test/suite/rpl/r/rpl_stm_innodb.result b/mysql-test/suite/rpl/r/rpl_stm_innodb.result
---- a/mysql-test/suite/rpl/r/rpl_stm_innodb.result 2013-07-15 14:01:49.000000000 +0200
-+++ b/mysql-test/suite/rpl/r/rpl_stm_innodb.result 2013-09-23 17:17:56.192985008 +0200
-@@ -79,6 +79,7 @@ COUNT(*)
- FLUSH LOGS;
- -------- switch to master --------
- FLUSH LOGS;
-+DROP TEMPORARY TABLE IF EXISTS mysqltest1.tmp2;
- DROP DATABASE mysqltest1;
- End of 5.1 tests
- #
-diff -rpu a/mysql-test/suite/rpl/r/rpl_stm_reset_slave.result b/mysql-test/suite/rpl/r/rpl_stm_reset_slave.result
---- a/mysql-test/suite/rpl/r/rpl_stm_reset_slave.result 2013-07-15 14:01:49.000000000 +0200
-+++ b/mysql-test/suite/rpl/r/rpl_stm_reset_slave.result 2013-09-23 17:22:01.585056446 +0200
-@@ -23,6 +23,7 @@ include/start_slave.inc
- show status like 'slave_open_temp_tables';
- Variable_name Value
- Slave_open_temp_tables 1
-+drop temporary table if exists t1;
- include/stop_slave.inc
- reset slave;
- include/check_slave_no_error.inc
-diff -rpu a/mysql-test/suite/rpl/t/rpl_create_tmp_table_if_not_exists.test b/mysql-test/suite/rpl/t/rpl_create_tmp_table_if_not_exists.test
---- a/mysql-test/suite/rpl/t/rpl_create_tmp_table_if_not_exists.test 2013-07-15 14:01:49.000000000 +0200
-+++ b/mysql-test/suite/rpl/t/rpl_create_tmp_table_if_not_exists.test 2013-09-23 17:17:56.192985008 +0200
-@@ -38,4 +38,8 @@ CREATE TEMPORARY TABLE IF NOT EXISTS tmp
- CREATE TEMPORARY TABLE IF NOT EXISTS tmp2 SELECT * FROM tmp;
- source include/show_binlog_events.inc;
-
-+DROP TEMPORARY TABLE IF EXISTS tmp;
-+DROP TEMPORARY TABLE IF EXISTS tmp1;
-+DROP TEMPORARY TABLE IF EXISTS tmp2;
-+
- --source include/rpl_end.inc
-diff -rpu a/mysql-test/suite/rpl/t/rpl_mixed_ddl_dml.test b/mysql-test/suite/rpl/t/rpl_mixed_ddl_dml.test
---- a/mysql-test/suite/rpl/t/rpl_mixed_ddl_dml.test 2013-07-15 14:01:49.000000000 +0200
-+++ b/mysql-test/suite/rpl/t/rpl_mixed_ddl_dml.test 2013-09-23 17:17:56.192985008 +0200
-@@ -43,6 +43,7 @@ show create table t3;
- show create table t5;
- connection master;
- drop table t2,t3,t5;
-+drop temporary table if exists t4;
- sync_slave_with_master;
-
- # End of 4.1 tests
-diff -rpu a/mysql-test/suite/rpl/t/rpl_rotate_logs.test b/mysql-test/suite/rpl/t/rpl_rotate_logs.test
---- a/mysql-test/suite/rpl/t/rpl_rotate_logs.test 2013-07-15 14:01:49.000000000 +0200
-+++ b/mysql-test/suite/rpl/t/rpl_rotate_logs.test 2013-09-23 17:17:56.192985008 +0200
-@@ -218,6 +218,7 @@ unlock tables;
- #clean up
- connection master;
- drop table if exists t1,t2,t3,t4;
-+drop temporary table temp_table;
- sync_slave_with_master;
-
- --echo End of 4.1 tests
-diff -rpu a/mysql-test/suite/rpl/t/rpl_stm_000001.test b/mysql-test/suite/rpl/t/rpl_stm_000001.test
---- a/mysql-test/suite/rpl/t/rpl_stm_000001.test 2013-07-15 14:01:49.000000000 +0200
-+++ b/mysql-test/suite/rpl/t/rpl_stm_000001.test 2013-09-23 17:17:56.192985008 +0200
-@@ -91,8 +91,8 @@ connection master1;
- sleep 3;
- select (@id := id) - id from t2;
- kill @id;
--# We don't drop t3 as this is a temporary table
- drop table t2;
-+drop temporary table if exists t3;
- connection master;
- # The get_lock function causes warning for unsafe statement.
- --disable_warnings
Modified: mysql-5.5/branches/unstable/debian/patches/series
===================================================================
--- mysql-5.5/branches/unstable/debian/patches/series 2013-11-04 18:12:47 UTC (rev 2246)
+++ mysql-5.5/branches/unstable/debian/patches/series 2014-01-17 15:59:24 UTC (rev 2247)
@@ -9,7 +9,6 @@
regex_plus.patch
versioned_symbols.patch
fix-mips64el-ftbfs.patch
-fix-racey-rpltests.patch
33_scripts__mysql_create_system_tables__no_test.patch
41_scripts__mysql_install_db.sh__no_test.patch
50_mysql-test__db_test.patch
More information about the Pkg-mysql-commits
mailing list