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
22652afd
Commit
22652afd
authored
Jun 24, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge gbichot@213.136.52.20:/home/bk/mysql-4.1
into mysql.com:/home/mysql_src/mysql-4.1-1717
parents
8131326e
1760dc7d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
sql/handler.cc
sql/handler.cc
+1
-1
sql/mysqld.cc
sql/mysqld.cc
+2
-5
No files found.
sql/handler.cc
View file @
22652afd
...
@@ -385,7 +385,7 @@ int ha_report_binlog_offset_and_commit(THD *thd,
...
@@ -385,7 +385,7 @@ int ha_report_binlog_offset_and_commit(THD *thd,
#ifdef HAVE_INNOBASE_DB
#ifdef HAVE_INNOBASE_DB
THD_TRANS
*
trans
;
THD_TRANS
*
trans
;
trans
=
&
thd
->
transaction
.
all
;
trans
=
&
thd
->
transaction
.
all
;
if
(
trans
->
inno
base_tid
&&
trans
->
inno
db_active_trans
)
if
(
trans
->
innodb_active_trans
)
{
{
/*
/*
If we updated some InnoDB tables (innodb_active_trans is true), the
If we updated some InnoDB tables (innodb_active_trans is true), the
...
...
sql/mysqld.cc
View file @
22652afd
...
@@ -2539,11 +2539,8 @@ server.");
...
@@ -2539,11 +2539,8 @@ server.");
if
(
opt_innodb_safe_binlog
)
if
(
opt_innodb_safe_binlog
)
{
{
if
(
have_innodb
!=
SHOW_OPTION_YES
)
if
(
have_innodb
!=
SHOW_OPTION_YES
)
{
sql_print_error
(
"Warning: --innodb-safe-binlog is meaningful only if "
sql_print_error
(
"Error: --innodb-safe-binlog is meaningful only if "
"the InnoDB storage engine is enabled in the server."
);
"the InnoDB storage engine is enabled in the server."
);
unireg_abort
(
1
);
}
if
(
innobase_flush_log_at_trx_commit
!=
1
)
if
(
innobase_flush_log_at_trx_commit
!=
1
)
{
{
sql_print_error
(
"Warning: --innodb-safe-binlog is meaningful only if "
sql_print_error
(
"Warning: --innodb-safe-binlog is meaningful only if "
...
@@ -4639,7 +4636,7 @@ replicating a LOAD DATA INFILE command.",
...
@@ -4639,7 +4636,7 @@ replicating a LOAD DATA INFILE command.",
enough, as then user can't set it to 1 so it will always be ignored in the
enough, as then user can't set it to 1 so it will always be ignored in the
rest of code.
rest of code.
*/
*/
#if MYSQL_VERSION_ID > 40103
#if MYSQL_VERSION_ID >
=
40103
/*
/*
innodb_safe_binlog is not a variable, just an option. Does not make
innodb_safe_binlog is not a variable, just an option. Does not make
sense to make it a variable, as it is only used at startup (and so the
sense to make it a variable, as it is only used at startup (and so the
...
...
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