From: Date: July 17 2008 4:34pm Subject: bzr commit into mysql-5.0 branch (kgeorge:2644) Bug#37069 List-Archive: http://lists.mysql.com/commits/49933 X-Bug: 37069 Message-Id: <200807171434.m6HEYELQ011009@magare.gmz> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit #At file:///home/kgeorge/mysql/bzr/federated-disabled-5.0-bugteam/ 2644 Georgi Kodinov 2008-07-17 Folow-up on Bug#37069: fix a valgrind warning Don't initalize federated if it's disabled by a command line option. modified: sql/ha_federated.cc per-file messages: sql/ha_federated.cc Folow-up on Bug#37069: Don't initalize federated if it's disabled by a command line option. === modified file 'sql/ha_federated.cc' --- a/sql/ha_federated.cc 2008-03-29 07:52:16 +0000 +++ b/sql/ha_federated.cc 2008-07-17 14:33:41 +0000 @@ -405,6 +405,9 @@ static byte *federated_get_key(FEDERATED bool federated_db_init() { DBUG_ENTER("federated_db_init"); + /* the federated engine can be disabled by a command line option */ + if (have_federated_db == SHOW_OPTION_DISABLED) + DBUG_RETURN(TRUE); if (pthread_mutex_init(&federated_mutex, MY_MUTEX_INIT_FAST)) goto error; if (hash_init(&federated_open_tables, &my_charset_bin, 32, 0, 0,