Below is the list of changes that have just been committed into a local
5.1 repository of tomash. When tomash 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, 2007-02-02 14:21:04+03:00, kroki@stripped +1 -0
BUG#23225: Slow query log: setting slow_query_log_file writes to
wrong file
After execution of SET GLOBAL SLOW_QUERY_LOG_FILE=...; slow query log
data would go into the general log file.
The problem was in the bogus cut-n-paste in the code.
sql/set_var.cc@stripped, 2007-02-02 14:20:59+03:00, kroki@stripped +1 -1
Fix cut-n-paste bug.
# 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: kroki
# Host: moonlight.home
# Root: /home/tomash/src/mysql_ab/mysql-5.1-bug23225
--- 1.211/sql/set_var.cc 2007-02-02 14:21:14 +03:00
+++ 1.212/sql/set_var.cc 2007-02-02 14:21:14 +03:00
@@ -2617,7 +2617,7 @@ bool update_sys_var_str_path(THD *thd, s
{
switch (log_type) {
case QUERY_LOG_SLOW:
- file_log->open_slow_log(sys_var_general_log_path.value);
+ file_log->open_slow_log(sys_var_slow_log_path.value);
break;
case QUERY_LOG_GENERAL:
file_log->open_query_log(sys_var_general_log_path.value);
| Thread |
|---|
| • bk commit into 5.1 tree (kroki:1.2416) BUG#23225 | kroki | 2 Feb |