From: Marc Alff Date: March 5 2010 3:31pm Subject: bzr commit into mysql-next-mr-bugfixing branch (marc.alff:3122) Bug#45194 List-Archive: http://lists.mysql.com/commits/102448 X-Bug: 45194 Message-Id: <20100305153105.7A7FB45E80@linux-su11.site> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4549925393213373595==" --===============4549925393213373595== MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline #At file:///home/malff/BZR_TREE/mysql-next-mr-bugfixing-45194/ based on revid:alik@stripped 3122 Marc Alff 2010-03-05 Bug#45194 mysql_upgrade deletes existing data in performance_schema database/schema Before this fix, mysql_upgrade would always drop and re create the performance_schema database. This in theory could destroy user data created using 5.1 or older versions. With this fix, mysql_upgrade checks the content of the performance_schema database before droping it. added: mysql-test/suite/perfschema/r/pfs_upgrade.result mysql-test/suite/perfschema/t/pfs_upgrade.test modified: scripts/mysql_system_tables.sql === added file 'mysql-test/suite/perfschema/r/pfs_upgrade.result' --- a/mysql-test/suite/perfschema/r/pfs_upgrade.result 1970-01-01 00:00:00 +0000 +++ b/mysql-test/suite/perfschema/r/pfs_upgrade.result 2010-03-05 15:31:01 +0000 @@ -0,0 +1,153 @@ +drop table if exists test.user_table; +drop procedure if exists test.user_proc; +drop function if exists test.user_func; +drop event if exists test.user_event; +"Testing mysql_upgrade with TABLE performance_schema.user_table" +create table test.user_table(a int); +use performance_schema; +show tables like "user_table"; +Tables_in_performance_schema (user_table) +user_table +ERROR 1644 (HY000) at line 178: Unexpected content found in the performance_schema database. +ERROR 1050 (42S01) at line 203: Table 'COND_INSTANCES' already exists +ERROR 1050 (42S01) at line 233: Table 'EVENTS_WAITS_CURRENT' already exists +ERROR 1050 (42S01) at line 247: Table 'EVENTS_WAITS_HISTORY' already exists +ERROR 1050 (42S01) at line 261: Table 'EVENTS_WAITS_HISTORY_LONG' already exists +ERROR 1050 (42S01) at line 281: Table 'EVENTS_WAITS_SUMMARY_BY_EVENT_NAME' already exists +ERROR 1050 (42S01) at line 302: Table 'EVENTS_WAITS_SUMMARY_BY_INSTANCE' already exists +ERROR 1050 (42S01) at line 323: Table 'EVENTS_WAITS_SUMMARY_BY_THREAD_BY_EVENT_NAME' already exists +ERROR 1050 (42S01) at line 340: Table 'FILE_INSTANCES' already exists +ERROR 1050 (42S01) at line 359: Table 'FILE_SUMMARY_BY_EVENT_NAME' already exists +ERROR 1050 (42S01) at line 379: Table 'FILE_SUMMARY_BY_INSTANCE' already exists +ERROR 1050 (42S01) at line 396: Table 'MUTEX_INSTANCES' already exists +ERROR 1050 (42S01) at line 414: Table 'PERFORMANCE_TIMERS' already exists +ERROR 1050 (42S01) at line 431: Table 'PROCESSLIST' already exists +ERROR 1050 (42S01) at line 449: Table 'RWLOCK_INSTANCES' already exists +ERROR 1050 (42S01) at line 465: Table 'SETUP_CONSUMERS' already exists +ERROR 1050 (42S01) at line 482: Table 'SETUP_INSTRUMENTS' already exists +ERROR 1050 (42S01) at line 502: Table 'SETUP_OBJECTS' already exists +ERROR 1050 (42S01) at line 518: Table 'SETUP_TIMERS' already exists +FATAL ERROR: Upgrade failed +show tables like "user_table"; +Tables_in_performance_schema (user_table) +user_table +use test; +drop table test.user_table; +"Testing mysql_upgrade with VIEW performance_schema.user_view" +create view test.user_view as select "Not supposed to be here"; +use performance_schema; +show tables like "user_view"; +Tables_in_performance_schema (user_view) +user_view +ERROR 1644 (HY000) at line 178: Unexpected content found in the performance_schema database. +ERROR 1050 (42S01) at line 203: Table 'COND_INSTANCES' already exists +ERROR 1050 (42S01) at line 233: Table 'EVENTS_WAITS_CURRENT' already exists +ERROR 1050 (42S01) at line 247: Table 'EVENTS_WAITS_HISTORY' already exists +ERROR 1050 (42S01) at line 261: Table 'EVENTS_WAITS_HISTORY_LONG' already exists +ERROR 1050 (42S01) at line 281: Table 'EVENTS_WAITS_SUMMARY_BY_EVENT_NAME' already exists +ERROR 1050 (42S01) at line 302: Table 'EVENTS_WAITS_SUMMARY_BY_INSTANCE' already exists +ERROR 1050 (42S01) at line 323: Table 'EVENTS_WAITS_SUMMARY_BY_THREAD_BY_EVENT_NAME' already exists +ERROR 1050 (42S01) at line 340: Table 'FILE_INSTANCES' already exists +ERROR 1050 (42S01) at line 359: Table 'FILE_SUMMARY_BY_EVENT_NAME' already exists +ERROR 1050 (42S01) at line 379: Table 'FILE_SUMMARY_BY_INSTANCE' already exists +ERROR 1050 (42S01) at line 396: Table 'MUTEX_INSTANCES' already exists +ERROR 1050 (42S01) at line 414: Table 'PERFORMANCE_TIMERS' already exists +ERROR 1050 (42S01) at line 431: Table 'PROCESSLIST' already exists +ERROR 1050 (42S01) at line 449: Table 'RWLOCK_INSTANCES' already exists +ERROR 1050 (42S01) at line 465: Table 'SETUP_CONSUMERS' already exists +ERROR 1050 (42S01) at line 482: Table 'SETUP_INSTRUMENTS' already exists +ERROR 1050 (42S01) at line 502: Table 'SETUP_OBJECTS' already exists +ERROR 1050 (42S01) at line 518: Table 'SETUP_TIMERS' already exists +FATAL ERROR: Upgrade failed +show tables like "user_view"; +Tables_in_performance_schema (user_view) +user_view +use test; +drop view test.user_view; +"Testing mysql_upgrade with PROCEDURE performance_schema.user_proc" +create procedure test.user_proc() +select "Not supposed to be here"; +update mysql.proc set db='performance_schema' where name='user_proc'; +ERROR 1644 (HY000) at line 178: Unexpected content found in the performance_schema database. +ERROR 1050 (42S01) at line 203: Table 'COND_INSTANCES' already exists +ERROR 1050 (42S01) at line 233: Table 'EVENTS_WAITS_CURRENT' already exists +ERROR 1050 (42S01) at line 247: Table 'EVENTS_WAITS_HISTORY' already exists +ERROR 1050 (42S01) at line 261: Table 'EVENTS_WAITS_HISTORY_LONG' already exists +ERROR 1050 (42S01) at line 281: Table 'EVENTS_WAITS_SUMMARY_BY_EVENT_NAME' already exists +ERROR 1050 (42S01) at line 302: Table 'EVENTS_WAITS_SUMMARY_BY_INSTANCE' already exists +ERROR 1050 (42S01) at line 323: Table 'EVENTS_WAITS_SUMMARY_BY_THREAD_BY_EVENT_NAME' already exists +ERROR 1050 (42S01) at line 340: Table 'FILE_INSTANCES' already exists +ERROR 1050 (42S01) at line 359: Table 'FILE_SUMMARY_BY_EVENT_NAME' already exists +ERROR 1050 (42S01) at line 379: Table 'FILE_SUMMARY_BY_INSTANCE' already exists +ERROR 1050 (42S01) at line 396: Table 'MUTEX_INSTANCES' already exists +ERROR 1050 (42S01) at line 414: Table 'PERFORMANCE_TIMERS' already exists +ERROR 1050 (42S01) at line 431: Table 'PROCESSLIST' already exists +ERROR 1050 (42S01) at line 449: Table 'RWLOCK_INSTANCES' already exists +ERROR 1050 (42S01) at line 465: Table 'SETUP_CONSUMERS' already exists +ERROR 1050 (42S01) at line 482: Table 'SETUP_INSTRUMENTS' already exists +ERROR 1050 (42S01) at line 502: Table 'SETUP_OBJECTS' already exists +ERROR 1050 (42S01) at line 518: Table 'SETUP_TIMERS' already exists +FATAL ERROR: Upgrade failed +select name from mysql.proc where db='performance_schema'; +name +user_proc +update mysql.proc set db='test' where name='user_proc'; +drop procedure test.user_proc; +"Testing mysql_upgrade with FUNCTION performance_schema.user_func" +create function test.user_func() returns integer +return 0; +update mysql.proc set db='performance_schema' where name='user_func'; +ERROR 1644 (HY000) at line 178: Unexpected content found in the performance_schema database. +ERROR 1050 (42S01) at line 203: Table 'COND_INSTANCES' already exists +ERROR 1050 (42S01) at line 233: Table 'EVENTS_WAITS_CURRENT' already exists +ERROR 1050 (42S01) at line 247: Table 'EVENTS_WAITS_HISTORY' already exists +ERROR 1050 (42S01) at line 261: Table 'EVENTS_WAITS_HISTORY_LONG' already exists +ERROR 1050 (42S01) at line 281: Table 'EVENTS_WAITS_SUMMARY_BY_EVENT_NAME' already exists +ERROR 1050 (42S01) at line 302: Table 'EVENTS_WAITS_SUMMARY_BY_INSTANCE' already exists +ERROR 1050 (42S01) at line 323: Table 'EVENTS_WAITS_SUMMARY_BY_THREAD_BY_EVENT_NAME' already exists +ERROR 1050 (42S01) at line 340: Table 'FILE_INSTANCES' already exists +ERROR 1050 (42S01) at line 359: Table 'FILE_SUMMARY_BY_EVENT_NAME' already exists +ERROR 1050 (42S01) at line 379: Table 'FILE_SUMMARY_BY_INSTANCE' already exists +ERROR 1050 (42S01) at line 396: Table 'MUTEX_INSTANCES' already exists +ERROR 1050 (42S01) at line 414: Table 'PERFORMANCE_TIMERS' already exists +ERROR 1050 (42S01) at line 431: Table 'PROCESSLIST' already exists +ERROR 1050 (42S01) at line 449: Table 'RWLOCK_INSTANCES' already exists +ERROR 1050 (42S01) at line 465: Table 'SETUP_CONSUMERS' already exists +ERROR 1050 (42S01) at line 482: Table 'SETUP_INSTRUMENTS' already exists +ERROR 1050 (42S01) at line 502: Table 'SETUP_OBJECTS' already exists +ERROR 1050 (42S01) at line 518: Table 'SETUP_TIMERS' already exists +FATAL ERROR: Upgrade failed +select name from mysql.proc where db='performance_schema'; +name +user_func +update mysql.proc set db='test' where name='user_func'; +drop function test.user_func; +"Testing mysql_upgrade with EVENT performance_schema.user_event" +create event test.user_event on schedule every 1 day do +select "not supposed to be here"; +update mysql.event set db='performance_schema' where name='user_event'; +ERROR 1644 (HY000) at line 178: Unexpected content found in the performance_schema database. +ERROR 1050 (42S01) at line 203: Table 'COND_INSTANCES' already exists +ERROR 1050 (42S01) at line 233: Table 'EVENTS_WAITS_CURRENT' already exists +ERROR 1050 (42S01) at line 247: Table 'EVENTS_WAITS_HISTORY' already exists +ERROR 1050 (42S01) at line 261: Table 'EVENTS_WAITS_HISTORY_LONG' already exists +ERROR 1050 (42S01) at line 281: Table 'EVENTS_WAITS_SUMMARY_BY_EVENT_NAME' already exists +ERROR 1050 (42S01) at line 302: Table 'EVENTS_WAITS_SUMMARY_BY_INSTANCE' already exists +ERROR 1050 (42S01) at line 323: Table 'EVENTS_WAITS_SUMMARY_BY_THREAD_BY_EVENT_NAME' already exists +ERROR 1050 (42S01) at line 340: Table 'FILE_INSTANCES' already exists +ERROR 1050 (42S01) at line 359: Table 'FILE_SUMMARY_BY_EVENT_NAME' already exists +ERROR 1050 (42S01) at line 379: Table 'FILE_SUMMARY_BY_INSTANCE' already exists +ERROR 1050 (42S01) at line 396: Table 'MUTEX_INSTANCES' already exists +ERROR 1050 (42S01) at line 414: Table 'PERFORMANCE_TIMERS' already exists +ERROR 1050 (42S01) at line 431: Table 'PROCESSLIST' already exists +ERROR 1050 (42S01) at line 449: Table 'RWLOCK_INSTANCES' already exists +ERROR 1050 (42S01) at line 465: Table 'SETUP_CONSUMERS' already exists +ERROR 1050 (42S01) at line 482: Table 'SETUP_INSTRUMENTS' already exists +ERROR 1050 (42S01) at line 502: Table 'SETUP_OBJECTS' already exists +ERROR 1050 (42S01) at line 518: Table 'SETUP_TIMERS' already exists +FATAL ERROR: Upgrade failed +select name from mysql.event where db='performance_schema'; +name +user_event +update mysql.event set db='test' where name='user_event'; +drop event test.user_event; === added file 'mysql-test/suite/perfschema/t/pfs_upgrade.test' --- a/mysql-test/suite/perfschema/t/pfs_upgrade.test 1970-01-01 00:00:00 +0000 +++ b/mysql-test/suite/perfschema/t/pfs_upgrade.test 2010-03-05 15:31:01 +0000 @@ -0,0 +1,137 @@ +# Copyright (C) 2010 Oracle and/or its affiliates. All rights reserved. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; version 2 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +# Tests for PERFORMANCE_SCHEMA +# Make sure mysql_upgrade does not destroy data in a 'performance_schema' +# database. +# + +--source include/not_embedded.inc +--source include/have_perfschema.inc + +--disable_warnings +drop table if exists test.user_table; +drop procedure if exists test.user_proc; +drop function if exists test.user_func; +drop event if exists test.user_event; +--enable_warnings + +--echo "Testing mysql_upgrade with TABLE performance_schema.user_table" + +create table test.user_table(a int); + +let $MYSQLD_DATADIR= `SELECT @@datadir`; +--copy_file $MYSQLD_DATADIR/test/user_table.frm $MYSQLD_DATADIR/performance_schema/user_table.frm + +# Make sure the table is visible +use performance_schema; +show tables like "user_table"; + +--error 1 +--exec $MYSQL_UPGRADE --skip-verbose > $MYSQLTEST_VARDIR/tmp/pfs_upgrade.out 2> $MYSQLTEST_VARDIR/tmp/pfs_upgrade.err + +# Verify that mysql_upgrade complained about the performance_schema +--cat_file $MYSQLTEST_VARDIR/tmp/pfs_upgrade.err + +# Make sure the table is still visible +show tables like "user_table"; + +use test; + +--remove_file $MYSQLD_DATADIR/performance_schema/user_table.frm +drop table test.user_table; + +--echo "Testing mysql_upgrade with VIEW performance_schema.user_view" + +create view test.user_view as select "Not supposed to be here"; + +let $MYSQLD_DATADIR= `SELECT @@datadir`; +--copy_file $MYSQLD_DATADIR/test/user_view.frm $MYSQLD_DATADIR/performance_schema/user_view.frm + +# Make sure the view is visible +use performance_schema; +show tables like "user_view"; + +--error 1 +--exec $MYSQL_UPGRADE --skip-verbose > $MYSQLTEST_VARDIR/tmp/pfs_upgrade.out 2> $MYSQLTEST_VARDIR/tmp/pfs_upgrade.err + +# Verify that mysql_upgrade complained about the performance_schema +--cat_file $MYSQLTEST_VARDIR/tmp/pfs_upgrade.err + +# Make sure the view is still visible +show tables like "user_view"; + +use test; + +--remove_file $MYSQLD_DATADIR/performance_schema/user_view.frm +drop view test.user_view; + +--echo "Testing mysql_upgrade with PROCEDURE performance_schema.user_proc" + +create procedure test.user_proc() + select "Not supposed to be here"; + +update mysql.proc set db='performance_schema' where name='user_proc'; + +--error 1 +--exec $MYSQL_UPGRADE --skip-verbose > $MYSQLTEST_VARDIR/tmp/pfs_upgrade.out 2> $MYSQLTEST_VARDIR/tmp/pfs_upgrade.err + +# Verify that mysql_upgrade complained about the performance_schema +--cat_file $MYSQLTEST_VARDIR/tmp/pfs_upgrade.err + +select name from mysql.proc where db='performance_schema'; + +update mysql.proc set db='test' where name='user_proc'; +drop procedure test.user_proc; + +--echo "Testing mysql_upgrade with FUNCTION performance_schema.user_func" + +create function test.user_func() returns integer + return 0; + +update mysql.proc set db='performance_schema' where name='user_func'; + +--error 1 +--exec $MYSQL_UPGRADE --skip-verbose > $MYSQLTEST_VARDIR/tmp/pfs_upgrade.out 2> $MYSQLTEST_VARDIR/tmp/pfs_upgrade.err + +# Verify that mysql_upgrade complained about the performance_schema +--cat_file $MYSQLTEST_VARDIR/tmp/pfs_upgrade.err + +select name from mysql.proc where db='performance_schema'; + +update mysql.proc set db='test' where name='user_func'; +drop function test.user_func; + +--echo "Testing mysql_upgrade with EVENT performance_schema.user_event" + +create event test.user_event on schedule every 1 day do + select "not supposed to be here"; + +update mysql.event set db='performance_schema' where name='user_event'; + +--error 1 +--exec $MYSQL_UPGRADE --skip-verbose > $MYSQLTEST_VARDIR/tmp/pfs_upgrade.out 2> $MYSQLTEST_VARDIR/tmp/pfs_upgrade.err + +# Verify that mysql_upgrade complained about the performance_schema +--cat_file $MYSQLTEST_VARDIR/tmp/pfs_upgrade.err + +select name from mysql.event where db='performance_schema'; + +update mysql.event set db='test' where name='user_event'; +drop event test.user_event; + +--remove_file $MYSQLTEST_VARDIR/tmp/pfs_upgrade.out +--remove_file $MYSQLTEST_VARDIR/tmp/pfs_upgrade.err + === modified file 'scripts/mysql_system_tables.sql' --- a/scripts/mysql_system_tables.sql 2010-01-12 01:47:27 +0000 +++ b/scripts/mysql_system_tables.sql 2010-03-05 15:31:01 +0000 @@ -1,4 +1,4 @@ --- Copyright (C) 2008-2009 Sun Microsystems, Inc +-- Copyright (C) 2008, 2010 Oracle and/or its affiliates. All rights reserved. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by @@ -100,18 +100,92 @@ CREATE TABLE IF NOT EXISTS event ( db ch CREATE TABLE IF NOT EXISTS ndb_binlog_index (Position BIGINT UNSIGNED NOT NULL, File VARCHAR(255) NOT NULL, epoch BIGINT UNSIGNED NOT NULL, inserts BIGINT UNSIGNED NOT NULL, updates BIGINT UNSIGNED NOT NULL, deletes BIGINT UNSIGNED NOT NULL, schemaops BIGINT UNSIGNED NOT NULL, PRIMARY KEY(epoch)) ENGINE=MYISAM; +-- +-- PERFORMANCE SCHEMA INSTALLATION +-- Note that this script is also reused by mysql_upgrade, +-- so we have to be very careful here to not destroy any +-- existing database named 'performance_schema' if it +-- can contain user data. +-- In case of downgrade, it's ok to drop unknown tables +-- from a future version, as long as they belong to the +-- performance schema engine. +-- + +set @have_old_pfs= (select count(*) from information_schema.schemata where schema_name='performance_schema'); + +SET @l1="SET @broken_tables = (select count(*) from information_schema.tables"; +SET @l2=" where engine != \'PERFORMANCE_SCHEMA\' and table_schema=\'performance_schema\')"; +SET @cmd=concat(@l1,@l2); + +-- Work around for bug#49542 +SET @str = IF(@have_old_pfs = 1, @cmd, 'SET @broken_tables = 0'); +PREPARE stmt FROM @str; +EXECUTE stmt; +DROP PREPARE stmt; + +SET @l1="SET @broken_views = (select count(*) from information_schema.views"; +SET @l2=" where table_schema='performance_schema')"; +SET @cmd=concat(@l1,@l2); + +-- Work around for bug#49542 +SET @str = IF(@have_old_pfs = 1, @cmd, 'SET @broken_views = 0'); +PREPARE stmt FROM @str; +EXECUTE stmt; +DROP PREPARE stmt; + +SET @broken_routines = (select count(*) from mysql.proc where db='performance_schema'); + +SET @broken_events = (select count(*) from mysql.event where db='performance_schema'); + +SET @broken_pfs= (select @broken_tables + @broken_views + @broken_routines + @broken_events); -- -- The performance schema database. --- This database is always created, even in --without-perfschema builds, +-- Only drop and create the database if this is safe (no broken_pfs). +-- This database is created, even in --without-perfschema builds, -- so that the database name is always reserved by the MySQL implementation. -- -set @have_pfs= (select count(engine) from information_schema.engines where engine='PERFORMANCE_SCHEMA' and support != 'NO'); +SET @cmd= "DROP DATABASE IF EXISTS performance_schema"; + +SET @str = IF(@broken_pfs = 0, @cmd, 'SET @dummy = 0'); +PREPARE stmt FROM @str; +EXECUTE stmt; +DROP PREPARE stmt; + +SET @cmd= "CREATE DATABASE performance_schema character set utf8"; -DROP DATABASE IF EXISTS performance_schema; +SET @str = IF(@broken_pfs = 0, @cmd, 'SET @dummy = 0'); +PREPARE stmt FROM @str; +EXECUTE stmt; +DROP PREPARE stmt; + +-- +-- Unlike 'performance_schema', the 'mysql' database is reserved already, +-- so no user procedure is supposed to be there +-- +drop procedure if exists mysql.die; +create procedure mysql.die() signal sqlstate 'HY000' set message_text='Unexpected content found in the performance_schema database.'; + +-- +-- For broken upgrades, SIGNAL the error +-- + +SET @cmd="call mysql.die()"; -CREATE DATABASE performance_schema character set utf8; +SET @str = IF(@broken_pfs > 0, @cmd, 'SET @dummy = 0'); +PREPARE stmt FROM @str; +EXECUTE stmt; +DROP PREPARE stmt; + +drop procedure mysql.die; + +-- +-- From this point, only create the performance schema tables +-- if the server is build with performance schema +-- + +set @have_pfs= (select count(engine) from information_schema.engines where engine='PERFORMANCE_SCHEMA' and support != 'NO'); -- -- TABLE COND_INSTANCES --===============4549925393213373595== MIME-Version: 1.0 Content-Type: text/bzr-bundle; charset="us-ascii"; name="bzr/marc.alff@stripped" Content-Transfer-Encoding: 7bit Content-Disposition: inline # Bazaar merge directive format 2 (Bazaar 0.90) # revision_id: marc.alff@stripped # target_branch: file:///home/malff/BZR_TREE/mysql-next-mr-bugfixing-\ # 45194/ # testament_sha1: a160fc6859cef86daed7a5c88f811a7e53bf317a # timestamp: 2010-03-05 08:31:05 -0700 # base_revision_id: alik@stripped # # Begin bundle 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 --===============4549925393213373595==--