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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
0bc7aa25
Commit
0bc7aa25
authored
Oct 09, 2008
by
Georgi Kodinov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WL4403: --general_log and --slow_query_log don't turn on the logging.
Fixed a compilation warning
parent
c3296418
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
4 deletions
+1
-4
sql/mysqld.cc
sql/mysqld.cc
+0
-4
sql/sql_class.h
sql/sql_class.h
+1
-0
No files found.
sql/mysqld.cc
View file @
0bc7aa25
...
...
@@ -7665,8 +7665,6 @@ mysqld_get_one_option(int optid,
break
;
case
'l'
:
WARN_DEPRECATED
(
NULL
,
"7.0"
,
"--log"
,
"'--general_log'/'--general_log_file'"
);
/* FALL-THROUGH */
case
OPT_GENERAL_LOG_FILE
:
opt_log
=
1
;
break
;
case
'h'
:
...
...
@@ -7837,8 +7835,6 @@ mysqld_get_one_option(int optid,
#endif
/* HAVE_REPLICATION */
case
(
int
)
OPT_SLOW_QUERY_LOG
:
WARN_DEPRECATED
(
NULL
,
"7.0"
,
"--log_slow_queries"
,
"'--slow_query_log'/'--slow_query_log_file'"
);
/* FALL-THROUGH */
case
(
int
)
OPT_SLOW_QUERY_LOG_FILE
:
opt_slow_log
=
1
;
break
;
#ifdef WITH_CSV_STORAGE_ENGINE
...
...
sql/sql_class.h
View file @
0bc7aa25
...
...
@@ -1010,6 +1010,7 @@ show_system_thread(enum_thread_type thread)
RETURN_NAME_AS_STRING
(
SYSTEM_THREAD_EVENT_WORKER
);
}
#undef RETURN_NAME_AS_STRING
return
"UNKNOWN"
;
/* keep gcc happy */
}
/**
...
...
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