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
20afd6b1
Commit
20afd6b1
authored
Oct 01, 2013
by
Seppo Jaakola
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
References lp:587170 - merged fix in from wsrep-5.5-23 branch
This branch is now in position 3924 in wsrep-5.5-23
parent
4e00dd68
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
sql/wsrep_mysqld.cc
sql/wsrep_mysqld.cc
+7
-1
No files found.
sql/wsrep_mysqld.cc
View file @
20afd6b1
...
...
@@ -714,7 +714,7 @@ bool wsrep_start_replication()
uint64_t
caps
=
wsrep
->
capabilities
(
wsrep
);
wsrep_incremental_data_collection
=
(
caps
&
WSREP_CAP_WRITE_SET_INCREMENTS
);
!!
(
caps
&
WSREP_CAP_WRITE_SET_INCREMENTS
);
char
*
opts
=
wsrep
->
options_get
(
wsrep
);
if
(
opts
)
...
...
@@ -1254,6 +1254,12 @@ int wsrep_to_isolation_begin(THD *thd, char *db_, char *table_,
if
(
!
ret
)
{
thd
->
wsrep_exec_mode
=
TOTAL_ORDER
;
/* It makes sense to set auto_increment_* to defaults in TOI operations */
if
(
wsrep_auto_increment_control
)
{
thd
->
variables
.
auto_increment_offset
=
1
;
thd
->
variables
.
auto_increment_increment
=
1
;
}
}
}
return
ret
;
...
...
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