Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
0f423388
Commit
0f423388
authored
Jul 24, 2007
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.1-runtime
into bodhi.(none):/opt/local/work/mysql-5.1-runtime
parents
a08bddd0
8cc45c05
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
mysql-test/r/log_state.result
mysql-test/r/log_state.result
+1
-1
sql/set_var.cc
sql/set_var.cc
+3
-3
No files found.
mysql-test/r/log_state.result
View file @
0f423388
...
...
@@ -131,7 +131,7 @@ set global general_log=ON;
set global log_output=default;
show variables like 'log_output';
Variable_name Value
log_output
TAB
LE
log_output
FI
LE
set global general_log=OFF;
set global log_output=FILE;
truncate table mysql.general_log;
...
...
sql/set_var.cc
View file @
0f423388
...
...
@@ -2220,9 +2220,9 @@ void sys_var_log_output::set_default(THD *thd, enum_var_type type)
{
pthread_mutex_lock
(
&
LOCK_global_system_variables
);
logger
.
lock
();
logger
.
init_slow_log
(
LOG_
TAB
LE
);
logger
.
init_general_log
(
LOG_
TAB
LE
);
*
value
=
LOG_
TAB
LE
;
logger
.
init_slow_log
(
LOG_
FI
LE
);
logger
.
init_general_log
(
LOG_
FI
LE
);
*
value
=
LOG_
FI
LE
;
logger
.
unlock
();
pthread_mutex_unlock
(
&
LOCK_global_system_variables
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment