Commit 22652afd authored by unknown's avatar unknown

Merge gbichot@213.136.52.20:/home/bk/mysql-4.1

into mysql.com:/home/mysql_src/mysql-4.1-1717
parents 8131326e 1760dc7d
...@@ -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->innobase_tid && trans->innodb_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
......
...@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment