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
01031f43
Commit
01031f43
authored
Sep 27, 2023
by
Oleksandr Byelkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-29180: Description of log_warnings incorrectly mentions "general log"
parent
bfab4ab0
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
6 deletions
+5
-6
mysql-test/main/mysqld--help.result
mysql-test/main/mysqld--help.result
+2
-3
mysql-test/suite/sys_vars/r/sysvars_server_embedded.result
mysql-test/suite/sys_vars/r/sysvars_server_embedded.result
+1
-1
mysql-test/suite/sys_vars/r/sysvars_server_notembedded.result
...l-test/suite/sys_vars/r/sysvars_server_notembedded.result
+1
-1
sql/sys_vars.cc
sql/sys_vars.cc
+1
-1
No files found.
mysql-test/main/mysqld--help.result
View file @
01031f43
...
@@ -511,9 +511,8 @@ The following specify which files/extra groups are read (specified before remain
...
@@ -511,9 +511,8 @@ The following specify which files/extra groups are read (specified before remain
when binary log is disabled).
when binary log is disabled).
--log-tc-size=# Size of transaction coordinator log.
--log-tc-size=# Size of transaction coordinator log.
-W, --log-warnings[=#]
-W, --log-warnings[=#]
Log some not critical warnings to the general log
Log some non critical warnings to the error log.Value can
file.Value can be between 0 and 11. Higher values mean
be between 0 and 11. Higher values mean more verbosity
more verbosity
--long-query-time=# Log all queries that have taken more than long_query_time
--long-query-time=# Log all queries that have taken more than long_query_time
seconds to execute to the slow query log file. The
seconds to execute to the slow query log file. The
argument will be treated as a decimal value with
argument will be treated as a decimal value with
...
...
mysql-test/suite/sys_vars/r/sysvars_server_embedded.result
View file @
01031f43
...
@@ -1705,7 +1705,7 @@ COMMAND_LINE_ARGUMENT REQUIRED
...
@@ -1705,7 +1705,7 @@ COMMAND_LINE_ARGUMENT REQUIRED
VARIABLE_NAME LOG_WARNINGS
VARIABLE_NAME LOG_WARNINGS
VARIABLE_SCOPE SESSION
VARIABLE_SCOPE SESSION
VARIABLE_TYPE BIGINT UNSIGNED
VARIABLE_TYPE BIGINT UNSIGNED
VARIABLE_COMMENT Log some no
t critical warnings to the general log file
.Value can be between 0 and 11. Higher values mean more verbosity
VARIABLE_COMMENT Log some no
n critical warnings to the error log
.Value can be between 0 and 11. Higher values mean more verbosity
NUMERIC_MIN_VALUE 0
NUMERIC_MIN_VALUE 0
NUMERIC_MAX_VALUE 4294967295
NUMERIC_MAX_VALUE 4294967295
NUMERIC_BLOCK_SIZE 1
NUMERIC_BLOCK_SIZE 1
...
...
mysql-test/suite/sys_vars/r/sysvars_server_notembedded.result
View file @
01031f43
...
@@ -1845,7 +1845,7 @@ COMMAND_LINE_ARGUMENT REQUIRED
...
@@ -1845,7 +1845,7 @@ COMMAND_LINE_ARGUMENT REQUIRED
VARIABLE_NAME LOG_WARNINGS
VARIABLE_NAME LOG_WARNINGS
VARIABLE_SCOPE SESSION
VARIABLE_SCOPE SESSION
VARIABLE_TYPE BIGINT UNSIGNED
VARIABLE_TYPE BIGINT UNSIGNED
VARIABLE_COMMENT Log some no
t critical warnings to the general log file
.Value can be between 0 and 11. Higher values mean more verbosity
VARIABLE_COMMENT Log some no
n critical warnings to the error log
.Value can be between 0 and 11. Higher values mean more verbosity
NUMERIC_MIN_VALUE 0
NUMERIC_MIN_VALUE 0
NUMERIC_MAX_VALUE 4294967295
NUMERIC_MAX_VALUE 4294967295
NUMERIC_BLOCK_SIZE 1
NUMERIC_BLOCK_SIZE 1
...
...
sql/sys_vars.cc
View file @
01031f43
...
@@ -1384,7 +1384,7 @@ static Sys_var_bit Sys_log_slow_slave_statements(
...
@@ -1384,7 +1384,7 @@ static Sys_var_bit Sys_log_slow_slave_statements(
static
Sys_var_ulong
Sys_log_warnings
(
static
Sys_var_ulong
Sys_log_warnings
(
"log_warnings"
,
"log_warnings"
,
"Log some no
t critical warnings to the general log file
."
"Log some no
n critical warnings to the error log
."
"Value can be between 0 and 11. Higher values mean more verbosity"
,
"Value can be between 0 and 11. Higher values mean more verbosity"
,
SESSION_VAR
(
log_warnings
),
SESSION_VAR
(
log_warnings
),
CMD_LINE
(
OPT_ARG
,
'W'
),
CMD_LINE
(
OPT_ARG
,
'W'
),
...
...
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