From: marc.alff Date: November 21 2006 6:02pm Subject: bk commit into 5.1 tree (malff:1.2377) List-Archive: http://lists.mysql.com/commits/15659 Message-Id: <20061121180231.5ADEC8E0702@weblab.mysql.com> Below is the list of changes that have just been committed into a local 5.1 repository of marcsql. When marcsql 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@stripped, 2006-11-21 11:02:25-07:00, malff@weblab.(none) +1 -0 Merge malff@stripped:/home/bk/mysql-5.1-runtime into weblab.(none):/home/marcsql/TREE/mysql-5.1-11733_topdown MERGE: 1.2343.2.1 sql/set_var.cc@stripped, 2006-11-21 11:02:22-07:00, malff@weblab.(none) +0 -0 Auto merged MERGE: 1.200.1.1 # 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: malff # Host: weblab.(none) # Root: /home/marcsql/TREE/mysql-5.1-11733_topdown/RESYNC --- 1.201/sql/set_var.cc 2006-11-21 11:02:31 -07:00 +++ 1.202/sql/set_var.cc 2006-11-21 11:02:31 -07:00 @@ -155,7 +155,6 @@ static KEY_CACHE *create_key_cache(const void fix_sql_mode_var(THD *thd, enum_var_type type); static byte *get_error_count(THD *thd); static byte *get_warning_count(THD *thd); -static byte *get_prepared_stmt_count(THD *thd); static byte *get_tmpdir(THD *thd); static int sys_check_log_path(THD *thd, set_var *var); static bool sys_update_general_log_path(THD *thd, set_var * var); @@ -639,9 +638,6 @@ static sys_var_readonly sys_warning_cou OPT_SESSION, SHOW_LONG, get_warning_count); -static sys_var_readonly sys_prepared_stmt_count("prepared_stmt_count", - OPT_GLOBAL, SHOW_LONG, - get_prepared_stmt_count); /* alias for last_insert_id() to be compatible with Sybase */ #ifdef HAVE_REPLICATION @@ -956,7 +952,6 @@ SHOW_VAR init_vars[]= { {"plugin_dir", (char*) opt_plugin_dir, SHOW_CHAR}, {"port", (char*) &mysqld_port, SHOW_INT}, {sys_preload_buff_size.name, (char*) &sys_preload_buff_size, SHOW_SYS}, - {sys_prepared_stmt_count.name, (char*) &sys_prepared_stmt_count, SHOW_SYS}, {"protocol_version", (char*) &protocol_version, SHOW_INT}, {sys_query_alloc_block_size.name, (char*) &sys_query_alloc_block_size, SHOW_SYS}, @@ -3149,14 +3144,6 @@ static byte *get_error_count(THD *thd) thd->sys_var_tmp.long_value= thd->warn_count[(uint) MYSQL_ERROR::WARN_LEVEL_ERROR]; return (byte*) &thd->sys_var_tmp.long_value; -} - -static byte *get_prepared_stmt_count(THD *thd) -{ - pthread_mutex_lock(&LOCK_prepared_stmt_count); - thd->sys_var_tmp.ulong_value= prepared_stmt_count; - pthread_mutex_unlock(&LOCK_prepared_stmt_count); - return (byte*) &thd->sys_var_tmp.ulong_value; }