From: Frazer Clement Date: March 12 2012 5:44pm Subject: bzr push into mysql-trunk branch (frazer.clement:3715 to 3716) WL#5917 List-Archive: http://lists.mysql.com/commits/143176 Message-Id: <201203121744.q2CHig6D016378@acsmt358.oracle.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit 3716 Frazer Clement 2012-03-12 WL#5917 Reserving Binlog log event numbers for future push modified: sql/log_event.h 3715 Marc Alff 2012-03-12 Port merge cleanup for WL#5259 performance schema host cache. Renamed columns / system variables for consistency with existing names. - COUNT_MAX_USER_CONNECTION_ERRORS --> COUNT_MAX_USER_CONNECTIONS_ERRORS - COUNT_MAX_USER_CONNECTION_PER_HOUR_ERRORS --> COUNT_MAX_USER_CONNECTIONS_PER_HOUR_ERRORS - Connection_errors_max_connection --> Connection_errors_max_connections modified: mysql-test/suite/perfschema/include/hostcache_dump.inc mysql-test/suite/perfschema/r/hostcache_ipv4_addrinfo_again_allow.result mysql-test/suite/perfschema/r/hostcache_ipv4_addrinfo_again_deny.result mysql-test/suite/perfschema/r/hostcache_ipv4_addrinfo_bad_allow.result mysql-test/suite/perfschema/r/hostcache_ipv4_addrinfo_bad_deny.result mysql-test/suite/perfschema/r/hostcache_ipv4_addrinfo_good_allow.result mysql-test/suite/perfschema/r/hostcache_ipv4_addrinfo_good_deny.result mysql-test/suite/perfschema/r/hostcache_ipv4_addrinfo_noname_allow.result mysql-test/suite/perfschema/r/hostcache_ipv4_addrinfo_noname_deny.result mysql-test/suite/perfschema/r/hostcache_ipv4_auth_plugin.result mysql-test/suite/perfschema/r/hostcache_ipv4_blocked.result mysql-test/suite/perfschema/r/hostcache_ipv4_format.result mysql-test/suite/perfschema/r/hostcache_ipv4_max_con.result mysql-test/suite/perfschema/r/hostcache_ipv4_nameinfo_again_allow.result mysql-test/suite/perfschema/r/hostcache_ipv4_nameinfo_again_deny.result mysql-test/suite/perfschema/r/hostcache_ipv4_nameinfo_noname_allow.result mysql-test/suite/perfschema/r/hostcache_ipv4_nameinfo_noname_deny.result mysql-test/suite/perfschema/r/hostcache_ipv4_passwd.result mysql-test/suite/perfschema/r/hostcache_ipv4_ssl.result mysql-test/suite/perfschema/r/hostcache_ipv6_addrinfo_again_allow.result mysql-test/suite/perfschema/r/hostcache_ipv6_addrinfo_again_deny.result mysql-test/suite/perfschema/r/hostcache_ipv6_addrinfo_bad_allow.result mysql-test/suite/perfschema/r/hostcache_ipv6_addrinfo_bad_deny.result mysql-test/suite/perfschema/r/hostcache_ipv6_addrinfo_good_allow.result mysql-test/suite/perfschema/r/hostcache_ipv6_addrinfo_good_deny.result mysql-test/suite/perfschema/r/hostcache_ipv6_addrinfo_noname_allow.result mysql-test/suite/perfschema/r/hostcache_ipv6_addrinfo_noname_deny.result mysql-test/suite/perfschema/r/hostcache_ipv6_auth_plugin.result mysql-test/suite/perfschema/r/hostcache_ipv6_blocked.result mysql-test/suite/perfschema/r/hostcache_ipv6_max_con.result mysql-test/suite/perfschema/r/hostcache_ipv6_nameinfo_again_allow.result mysql-test/suite/perfschema/r/hostcache_ipv6_nameinfo_again_deny.result mysql-test/suite/perfschema/r/hostcache_ipv6_nameinfo_noname_allow.result mysql-test/suite/perfschema/r/hostcache_ipv6_nameinfo_noname_deny.result mysql-test/suite/perfschema/r/hostcache_ipv6_passwd.result mysql-test/suite/perfschema/r/hostcache_ipv6_ssl.result mysql-test/suite/perfschema/r/hostcache_peer_addr.result mysql-test/suite/perfschema/r/schema.result mysql-test/suite/perfschema/r/table_schema.result scripts/mysql_system_tables.sql sql/mysqld.cc storage/perfschema/table_host_cache.cc === modified file 'sql/log_event.h' --- a/sql/log_event.h 2012-02-28 10:57:17 +0000 +++ b/sql/log_event.h 2012-03-12 17:43:28 +0000 @@ -691,10 +691,15 @@ enum Log_event_type IGNORABLE_LOG_EVENT= 28, ROWS_QUERY_LOG_EVENT= 29, - GTID_LOG_EVENT= 30, - ANONYMOUS_GTID_LOG_EVENT= 31, + /* Following event numbers reserved for WL#5917 */ + RESERVED_EVENT_NUM_1 = 30, + RESERVED_EVENT_NUM_2 = 31, + RESERVED_EVENT_NUM_3 = 32, - PREVIOUS_GTIDS_LOG_EVENT= 32, + GTID_LOG_EVENT= 33, + ANONYMOUS_GTID_LOG_EVENT= 34, + + PREVIOUS_GTIDS_LOG_EVENT= 35, /* Add new events here - right above this comment! Existing events (except ENUM_END_EVENT) should never change their numbers No bundle (reason: useless for push emails).