From: Marc Alff Date: May 3 2010 3:04pm Subject: bzr commit into mysql-next-mr-bugfixing branch (marc.alff:3159) List-Archive: http://lists.mysql.com/commits/107205 Message-Id: <20100503150409.059815020A4@MarcBook.local> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="Boundary_(ID_mJbH4Dp4u6cK33csSW2l3g)" --Boundary_(ID_mJbH4Dp4u6cK33csSW2l3g) MIME-version: 1.0 Content-type: text/plain; CHARSET=US-ASCII Content-transfer-encoding: 7BIT Content-disposition: inline #At file:///Users/malff/BZR_TREE/mysql-next-mr-bugfixing-cleanup/ based on revid:dao-gang.qu@stripped 3159 Marc Alff 2010-05-03 Header file cleanup modified: storage/perfschema/ha_perfschema.cc storage/perfschema/pfs.h storage/perfschema/pfs_check.cc storage/perfschema/pfs_column_values.cc storage/perfschema/pfs_engine_table.cc storage/perfschema/pfs_instr.cc storage/perfschema/pfs_instr.h storage/perfschema/pfs_instr_class.h storage/perfschema/pfs_server.cc storage/perfschema/table_all_instr.cc storage/perfschema/table_events_waits.cc storage/perfschema/table_events_waits_summary.cc storage/perfschema/table_file_instances.cc storage/perfschema/table_file_summary.cc storage/perfschema/table_performance_timers.cc storage/perfschema/table_processlist.cc storage/perfschema/table_setup_consumers.cc storage/perfschema/table_setup_instruments.cc storage/perfschema/table_setup_objects.cc storage/perfschema/table_setup_timers.cc storage/perfschema/table_sync_instances.cc storage/perfschema/unittest/pfs-t.cc storage/perfschema/unittest/pfs_instr-oom-t.cc storage/perfschema/unittest/pfs_instr-t.cc storage/perfschema/unittest/pfs_instr_class-oom-t.cc storage/perfschema/unittest/pfs_instr_class-t.cc storage/perfschema/unittest/pfs_timer-t.cc storage/perfschema/unittest/stub_pfs_global.h storage/perfschema/unittest/stub_print_error.h === modified file 'storage/perfschema/ha_perfschema.cc' --- a/storage/perfschema/ha_perfschema.cc 2010-04-19 12:26:29 +0000 +++ b/storage/perfschema/ha_perfschema.cc 2010-05-03 15:04:02 +0000 @@ -18,10 +18,11 @@ Performance schema storage engine (implementation). */ -#include "sql_priv.h" -#include "unireg.h" -#include "ha_perfschema.h" +#include "my_global.h" +#include "my_pthread.h" +#include "sql_plugin.h" #include "mysql/plugin.h" +#include "ha_perfschema.h" #include "pfs_engine_table.h" #include "pfs_column_values.h" #include "pfs_instr_class.h" === modified file 'storage/perfschema/pfs.h' --- a/storage/perfschema/pfs.h 2010-04-19 12:26:29 +0000 +++ b/storage/perfschema/pfs.h 2010-05-03 15:04:02 +0000 @@ -23,9 +23,8 @@ #define HAVE_PSI_1 -#include #include -#include +#include #include extern struct PSI_bootstrap PFS_bootstrap; === modified file 'storage/perfschema/pfs_check.cc' --- a/storage/perfschema/pfs_check.cc 2010-04-19 12:26:29 +0000 +++ b/storage/perfschema/pfs_check.cc 2010-05-03 15:04:02 +0000 @@ -23,7 +23,6 @@ */ #include "my_global.h" -#include "sql_priv.h" #include "pfs_server.h" #include "pfs_engine_table.h" === modified file 'storage/perfschema/pfs_column_values.cc' --- a/storage/perfschema/pfs_column_values.cc 2010-04-19 12:26:29 +0000 +++ b/storage/perfschema/pfs_column_values.cc 2010-05-03 15:04:02 +0000 @@ -19,7 +19,6 @@ schema tables (implementation). */ -#include "sql_priv.h" #include "pfs_column_values.h" LEX_STRING PERFORMANCE_SCHEMA_str= === modified file 'storage/perfschema/pfs_engine_table.cc' --- a/storage/perfschema/pfs_engine_table.cc 2010-04-26 09:27:44 +0000 +++ b/storage/perfschema/pfs_engine_table.cc 2010-05-03 15:04:02 +0000 @@ -19,7 +19,6 @@ Performance schema tables (implementation). */ -#include "sql_priv.h" #include "pfs_engine_table.h" #include "table_events_waits.h" === modified file 'storage/perfschema/pfs_instr.cc' --- a/storage/perfschema/pfs_instr.cc 2010-04-13 09:49:50 +0000 +++ b/storage/perfschema/pfs_instr.cc 2010-05-03 15:04:02 +0000 @@ -21,8 +21,8 @@ #include #include "my_global.h" -#include "sql_priv.h" #include "my_sys.h" +#include "pfs.h" #include "pfs_stat.h" #include "pfs_instr.h" #include "pfs_global.h" === modified file 'storage/perfschema/pfs_instr.h' --- a/storage/perfschema/pfs_instr.h 2010-04-19 12:26:29 +0000 +++ b/storage/perfschema/pfs_instr.h 2010-05-03 15:04:02 +0000 @@ -21,7 +21,6 @@ Performance schema instruments (declarations). */ -#include #include "pfs_lock.h" #include "pfs_instr_class.h" #include "pfs_events_waits.h" === modified file 'storage/perfschema/pfs_instr_class.h' --- a/storage/perfschema/pfs_instr_class.h 2010-04-19 12:26:29 +0000 +++ b/storage/perfschema/pfs_instr_class.h 2010-05-03 15:04:02 +0000 @@ -38,7 +38,6 @@ */ #define PFS_MAX_FULL_PREFIX_NAME_LENGTH 32 -#include #include #include #include "pfs_lock.h" === modified file 'storage/perfschema/pfs_server.cc' --- a/storage/perfschema/pfs_server.cc 2010-04-19 12:26:29 +0000 +++ b/storage/perfschema/pfs_server.cc 2010-05-03 15:04:02 +0000 @@ -21,7 +21,6 @@ #include "my_global.h" #include "my_sys.h" #include "mysys_err.h" -#include "sql_priv.h" #include "pfs_server.h" #include "pfs.h" #include "pfs_global.h" === modified file 'storage/perfschema/table_all_instr.cc' --- a/storage/perfschema/table_all_instr.cc 2010-04-26 09:27:44 +0000 +++ b/storage/perfschema/table_all_instr.cc 2010-05-03 15:04:02 +0000 @@ -18,7 +18,6 @@ Abstract tables for all instruments (implementation). */ -#include "sql_priv.h" #include "my_global.h" #include "my_pthread.h" #include "table_all_instr.h" === modified file 'storage/perfschema/table_events_waits.cc' --- a/storage/perfschema/table_events_waits.cc 2010-04-26 09:27:44 +0000 +++ b/storage/perfschema/table_events_waits.cc 2010-05-03 15:04:02 +0000 @@ -18,7 +18,8 @@ Table EVENTS_WAITS_xxx (implementation). */ -#include "sql_priv.h" +#include "my_global.h" +#include "my_pthread.h" #include "table_events_waits.h" #include "pfs_instr_class.h" #include "pfs_instr.h" === modified file 'storage/perfschema/table_events_waits_summary.cc' --- a/storage/perfschema/table_events_waits_summary.cc 2010-04-26 09:27:44 +0000 +++ b/storage/perfschema/table_events_waits_summary.cc 2010-05-03 15:04:02 +0000 @@ -18,8 +18,8 @@ Table EVENTS_WAITS_SUMMARY_BY_xxx (implementation). */ -#include "sql_priv.h" -#include "unireg.h" +#include "my_global.h" +#include "my_pthread.h" #include "pfs_instr_class.h" #include "pfs_column_types.h" #include "pfs_column_values.h" === modified file 'storage/perfschema/table_file_instances.cc' --- a/storage/perfschema/table_file_instances.cc 2010-04-26 09:27:44 +0000 +++ b/storage/perfschema/table_file_instances.cc 2010-05-03 15:04:02 +0000 @@ -18,8 +18,8 @@ Table FILE_INSTANCES (implementation). */ -#include "sql_priv.h" -#include "unireg.h" +#include "my_global.h" +#include "my_pthread.h" #include "pfs_instr.h" #include "pfs_column_types.h" #include "pfs_column_values.h" === modified file 'storage/perfschema/table_file_summary.cc' --- a/storage/perfschema/table_file_summary.cc 2010-04-26 09:27:44 +0000 +++ b/storage/perfschema/table_file_summary.cc 2010-05-03 15:04:02 +0000 @@ -18,8 +18,8 @@ Table FILE_SUMMARY_BY_xxx (implementation). */ -#include "sql_priv.h" -#include "unireg.h" +#include "my_global.h" +#include "my_pthread.h" #include "pfs_instr_class.h" #include "pfs_column_types.h" #include "pfs_column_values.h" === modified file 'storage/perfschema/table_performance_timers.cc' --- a/storage/perfschema/table_performance_timers.cc 2010-04-26 09:27:44 +0000 +++ b/storage/perfschema/table_performance_timers.cc 2010-05-03 15:04:02 +0000 @@ -18,8 +18,8 @@ Table PERFORMANCE_TIMERS (implementation). */ -#include "sql_priv.h" #include "my_global.h" +#include "my_pthread.h" #include "table_performance_timers.h" #include "pfs_timer.h" #include "pfs_global.h" === modified file 'storage/perfschema/table_processlist.cc' --- a/storage/perfschema/table_processlist.cc 2010-04-26 09:27:44 +0000 +++ b/storage/perfschema/table_processlist.cc 2010-05-03 15:04:02 +0000 @@ -18,7 +18,8 @@ Table PROCESSLIST (implementation). */ -#include "sql_priv.h" +#include "my_global.h" +#include "my_pthread.h" #include "table_processlist.h" #include "pfs_instr_class.h" #include "pfs_instr.h" === modified file 'storage/perfschema/table_setup_consumers.cc' --- a/storage/perfschema/table_setup_consumers.cc 2010-04-19 12:26:29 +0000 +++ b/storage/perfschema/table_setup_consumers.cc 2010-05-03 15:04:02 +0000 @@ -18,7 +18,8 @@ Table SETUP_CONSUMERS (implementation). */ -#include "sql_priv.h" +#include "my_global.h" +#include "my_pthread.h" #include "table_setup_consumers.h" #include "pfs_instr.h" #include "pfs_events_waits.h" === modified file 'storage/perfschema/table_setup_instruments.cc' --- a/storage/perfschema/table_setup_instruments.cc 2010-04-19 12:26:29 +0000 +++ b/storage/perfschema/table_setup_instruments.cc 2010-05-03 15:04:02 +0000 @@ -18,8 +18,8 @@ Table SETUP_INSTRUMENTS (implementation). */ -#include "sql_priv.h" -#include "unireg.h" +#include "my_global.h" +#include "my_pthread.h" #include "pfs_instr_class.h" #include "pfs_column_types.h" #include "pfs_column_values.h" === modified file 'storage/perfschema/table_setup_objects.cc' --- a/storage/perfschema/table_setup_objects.cc 2010-04-19 12:26:29 +0000 +++ b/storage/perfschema/table_setup_objects.cc 2010-05-03 15:04:02 +0000 @@ -18,8 +18,8 @@ Table SETUP_OBJECTS (implementation). */ -#include "sql_priv.h" -#include "unireg.h" +#include "my_global.h" +#include "my_pthread.h" #include "pfs_instr_class.h" #include "pfs_column_types.h" #include "pfs_column_values.h" === modified file 'storage/perfschema/table_setup_timers.cc' --- a/storage/perfschema/table_setup_timers.cc 2010-04-19 12:26:29 +0000 +++ b/storage/perfschema/table_setup_timers.cc 2010-05-03 15:04:02 +0000 @@ -18,7 +18,8 @@ Table SETUP_TIMERS (implementation). */ -#include "sql_priv.h" +#include "my_global.h" +#include "my_pthread.h" #include "table_setup_timers.h" #include "pfs_column_values.h" #include "pfs_timer.h" === modified file 'storage/perfschema/table_sync_instances.cc' --- a/storage/perfschema/table_sync_instances.cc 2010-04-26 09:27:44 +0000 +++ b/storage/perfschema/table_sync_instances.cc 2010-05-03 15:04:02 +0000 @@ -19,8 +19,8 @@ and COND_INSTANCES (implementation). */ -#include "sql_priv.h" -#include "unireg.h" +#include "my_global.h" +#include "my_pthread.h" #include "pfs_instr.h" #include "pfs_column_types.h" #include "pfs_column_values.h" === modified file 'storage/perfschema/unittest/pfs-t.cc' --- a/storage/perfschema/unittest/pfs-t.cc 2010-04-13 11:48:46 +0000 +++ b/storage/perfschema/unittest/pfs-t.cc 2010-05-03 15:04:02 +0000 @@ -1,4 +1,4 @@ -/* Copyright (C) 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 @@ -13,9 +13,8 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include -#include #include +#include #include #include #include === modified file 'storage/perfschema/unittest/pfs_instr-oom-t.cc' --- a/storage/perfschema/unittest/pfs_instr-oom-t.cc 2010-04-13 11:48:46 +0000 +++ b/storage/perfschema/unittest/pfs_instr-oom-t.cc 2010-05-03 15:04:02 +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 @@ -13,9 +13,8 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include -#include #include +#include #include #include #include === modified file 'storage/perfschema/unittest/pfs_instr-t.cc' --- a/storage/perfschema/unittest/pfs_instr-t.cc 2010-04-13 11:48:46 +0000 +++ b/storage/perfschema/unittest/pfs_instr-t.cc 2010-05-03 15:04:02 +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 @@ -13,9 +13,8 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include -#include #include +#include #include #include #include === modified file 'storage/perfschema/unittest/pfs_instr_class-oom-t.cc' --- a/storage/perfschema/unittest/pfs_instr_class-oom-t.cc 2010-04-13 11:48:46 +0000 +++ b/storage/perfschema/unittest/pfs_instr_class-oom-t.cc 2010-05-03 15:04:02 +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 @@ -13,9 +13,8 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include -#include #include +#include #include #include #include === modified file 'storage/perfschema/unittest/pfs_instr_class-t.cc' --- a/storage/perfschema/unittest/pfs_instr_class-t.cc 2010-04-13 11:48:46 +0000 +++ b/storage/perfschema/unittest/pfs_instr_class-t.cc 2010-05-03 15:04:02 +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 @@ -13,10 +13,8 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include #include -#include - +#include #include // strncpy #include #include === modified file 'storage/perfschema/unittest/pfs_timer-t.cc' --- a/storage/perfschema/unittest/pfs_timer-t.cc 2010-04-12 09:31:45 +0000 +++ b/storage/perfschema/unittest/pfs_timer-t.cc 2010-05-03 15:04:02 +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 @@ -13,8 +13,8 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include #include +#include #include #include "my_sys.h" #include === modified file 'storage/perfschema/unittest/stub_pfs_global.h' --- a/storage/perfschema/unittest/stub_pfs_global.h 2010-01-12 01:47:27 +0000 +++ b/storage/perfschema/unittest/stub_pfs_global.h 2010-05-03 15:04:02 +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 === modified file 'storage/perfschema/unittest/stub_print_error.h' --- a/storage/perfschema/unittest/stub_print_error.h 2010-01-12 01:47:27 +0000 +++ b/storage/perfschema/unittest/stub_print_error.h 2010-05-03 15:04:02 +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 --Boundary_(ID_mJbH4Dp4u6cK33csSW2l3g) MIME-version: 1.0 Content-type: text/bzr-bundle; CHARSET=US-ASCII; name="bzr/marc.alff@stripped" Content-transfer-encoding: 7BIT Content-disposition: inline; filename="bzr/marc.alff@stripped" # Bazaar merge directive format 2 (Bazaar 0.90) # revision_id: marc.alff@stripped # target_branch: file:///Users/malff/BZR_TREE/mysql-next-mr-bugfixing-\ # cleanup/ # testament_sha1: 947cf6e2a7c71ec31ff87dbee8716f6ac63e775a # timestamp: 2010-05-03 09:04:08 -0600 # base_revision_id: dao-gang.qu@stripped\ # pdu2ol91m2jb4p67 # # Begin bundle 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 8IFfOfKiZ9neqJ/8XckU4UJBq1YA/A== --Boundary_(ID_mJbH4Dp4u6cK33csSW2l3g)--