diff options
author | unknown <aelkin@dl145j.mysql.com> | 2007-09-15 21:25:56 +0200 |
---|---|---|
committer | unknown <aelkin@dl145j.mysql.com> | 2007-09-15 21:25:56 +0200 |
commit | e35c1ab9a287264ec167f6c17c690aabbf921715 (patch) | |
tree | fc09beb28356b1412aac29629c639e209c908fe6 /sql/sql_update.cc | |
parent | 48f38afb8ee84ea6a08710374a54098581683444 (diff) | |
parent | 69604f4db10f125651ab0620320dbd91253c5bc6 (diff) | |
download | mariadb-git-e35c1ab9a287264ec167f6c17c690aabbf921715.tar.gz |
Merge dl145j.mysql.com:/tmp/andrei/mysql-5.0-rpl
into dl145j.mysql.com:/tmp/andrei/5.1-merge
BitKeeper/deleted/.del-sp_trans_log.result:
Auto merged
BitKeeper/deleted/.del-sp_trans_log.test:
Auto merged
mysql-test/suite/rpl/r/rpl_packet.result:
Auto merged
sql/sql_delete.cc:
Auto merged
sql/sql_update.cc:
Auto merged
mysql-test/suite/binlog/r/binlog_stm_mix_innodb_myisam.result:
should be re-recorded
mysql-test/extra/binlog_tests/mix_innodb_myisam_binlog.test:
manual merge
mysql-test/suite/rpl/t/rpl_packet.test:
manual merge
sql/slave.cc:
manual merge
sql/sql_insert.cc:
manual merge - installing 5.0 patch logics
sql/sql_load.cc:
manual merge
Diffstat (limited to 'sql/sql_update.cc')
-rw-r--r-- | sql/sql_update.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_update.cc b/sql/sql_update.cc index cb3f2fece89..0a6bbc2d0ea 100644 --- a/sql/sql_update.cc +++ b/sql/sql_update.cc @@ -797,7 +797,7 @@ int mysql_update(THD *thd, Sometimes we want to binlog even if we updated no rows, in case user used it to be sure master and slave are in same state. */ - if ((error < 0) || (updated && !transactional_table)) + if ((error < 0) || thd->transaction.stmt.modified_non_trans_table) { if (mysql_bin_log.is_open()) { |