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
840aefc6
Commit
840aefc6
authored
9 years ago
by
Nirbhay Choubey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-8590: Fix embedded build failure
parent
cd1a11ac
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
sql/handler.cc
sql/handler.cc
+5
-0
No files found.
sql/handler.cc
View file @
840aefc6
...
...
@@ -5590,6 +5590,7 @@ static bool check_table_binlog_row_based(THD *thd, TABLE *table)
return
(
thd
->
is_current_stmt_binlog_format_row
()
&&
table
->
s
->
cached_row_logging_check
&&
#ifdef WITH_WSREP
/*
Wsrep partially enables binary logging if it have not been
explicitly turned on. As a result we return 'true' if we are in
...
...
@@ -5608,6 +5609,10 @@ static bool check_table_binlog_row_based(THD *thd, TABLE *table)
((
WSREP_EMULATE_BINLOG
(
thd
)
&&
(
thd
->
wsrep_exec_mode
!=
REPL_RECV
))
||
((
WSREP
(
thd
)
||
(
thd
->
variables
.
option_bits
&
OPTION_BIN_LOG
))
&&
mysql_bin_log
.
is_open
())));
#else
(
thd
->
variables
.
option_bits
&
OPTION_BIN_LOG
)
&&
mysql_bin_log
.
is_open
());
#endif
}
...
...
This diff is collapsed.
Click to expand it.
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