From: Date: February 14 2006 10:31am Subject: bk commit into 5.1 tree (jani:1.2100) List-Archive: http://lists.mysql.com/commits/2577 Message-Id: <20060214093128.997E5175CA6@a80-186-41-201.elisa-laajakaista.fi> Below is the list of changes that have just been committed into a local 5.1 repository of jani. When jani does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet 1.2100 06/02/14 11:31:15 jani@stripped +2 -0 Merge jamppa@stripped:/home/bk/mysql-5.1-new into ua141d10.elisa.omakaista.fi:/home/my/bk/mysql-5.1-new sql/set_var.cc 1.167 06/02/14 11:31:00 jani@stripped +0 -0 Auto merged sql/mysqld.cc 1.535 06/02/14 11:31:00 jani@stripped +0 -0 Auto merged # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: jani # Host: ua141d10.elisa.omakaista.fi # Root: /home/my/bk/mysql-5.1-new/RESYNC --- 1.166/sql/set_var.cc 2006-02-08 11:35:46 +02:00 +++ 1.167/sql/set_var.cc 2006-02-14 11:31:00 +02:00 @@ -109,7 +109,7 @@ -extern volatile my_bool event_executor_running_global_var; +extern my_bool event_executor_running_global_var; static HASH system_variable_hash; const char *bool_type_names[]= { "OFF", "ON", NullS }; @@ -629,14 +629,12 @@ &have_federated_db); sys_var_have_variable sys_have_geometry("have_geometry", &have_geometry); sys_var_have_variable sys_have_innodb("have_innodb", &have_innodb); -sys_var_have_variable sys_have_isam("have_isam", &have_isam); sys_var_have_variable sys_have_ndbcluster("have_ndbcluster", &have_ndbcluster); sys_var_have_variable sys_have_openssl("have_openssl", &have_openssl); sys_var_have_variable sys_have_partition_db("have_partitioning", &have_partition_db); sys_var_have_variable sys_have_query_cache("have_query_cache", &have_query_cache); -sys_var_have_variable sys_have_raid("have_raid", &have_raid); sys_var_have_variable sys_have_rtree_keys("have_rtree_keys", &have_rtree_keys); sys_var_have_variable sys_have_symlink("have_symlink", &have_symlink); sys_var_have_variable sys_have_row_based_replication("have_row_based_replication",&have_row_based_replication); @@ -750,12 +748,10 @@ {sys_have_federated_db.name,(char*) &have_federated_db, SHOW_HAVE}, {sys_have_geometry.name, (char*) &have_geometry, SHOW_HAVE}, {sys_have_innodb.name, (char*) &have_innodb, SHOW_HAVE}, - {sys_have_isam.name, (char*) &have_isam, SHOW_HAVE}, {sys_have_ndbcluster.name, (char*) &have_ndbcluster, SHOW_HAVE}, {sys_have_openssl.name, (char*) &have_openssl, SHOW_HAVE}, {sys_have_partition_db.name,(char*) &have_partition_db, SHOW_HAVE}, {sys_have_query_cache.name, (char*) &have_query_cache, SHOW_HAVE}, - {sys_have_raid.name, (char*) &have_raid, SHOW_HAVE}, {sys_have_row_based_replication.name, (char*) &have_row_based_replication, SHOW_HAVE}, {sys_have_rtree_keys.name, (char*) &have_rtree_keys, SHOW_HAVE}, {sys_have_symlink.name, (char*) &have_symlink, SHOW_HAVE},