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
c039d966
Commit
c039d966
authored
Jun 25, 2014
by
Nirbhay Choubey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a typo and updated mysqld--help test result.
parent
9a0b80c9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
mysql-test/r/mysqld--help.result
mysql-test/r/mysqld--help.result
+7
-0
sql/sys_vars.cc
sql/sys_vars.cc
+1
-1
No files found.
mysql-test/r/mysqld--help.result
View file @
c039d966
...
...
@@ -1108,6 +1108,11 @@ The following options may be given as the first argument:
--wsrep-retry-autocommit=#
Max number of times to retry a failed autocommit
statement
--wsrep-slave-FK-checks
Should slave thread do foreign key constraint checks
(Defaults to on; use --skip-wsrep-slave-FK-checks to disable.)
--wsrep-slave-UK-checks
Should slave thread do secondary index uniqueness checks
--wsrep-slave-threads=#
Number of slave appliers to launch
--wsrep-sst-auth=name
...
...
@@ -1448,6 +1453,8 @@ wsrep-recover FALSE
wsrep-replicate-myisam FALSE
wsrep-restart-slave FALSE
wsrep-retry-autocommit 1
wsrep-slave-FK-checks TRUE
wsrep-slave-UK-checks FALSE
wsrep-slave-threads 1
wsrep-sst-auth (No default value)
wsrep-sst-donor
...
...
sql/sys_vars.cc
View file @
c039d966
...
...
@@ -4720,7 +4720,7 @@ static Sys_var_mybool Sys_wsrep_slave_FK_checks(
static
Sys_var_mybool
Sys_wsrep_slave_UK_checks
(
"wsrep_slave_UK_checks"
,
"Should slave thread do "
"secondary index uniqueness che
s
ks"
,
"secondary index uniqueness che
c
ks"
,
GLOBAL_VAR
(
wsrep_slave_UK_checks
),
CMD_LINE
(
OPT_ARG
),
DEFAULT
(
FALSE
));
...
...
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