summaryrefslogtreecommitdiff
path: root/sql/ha_ndbcluster_binlog.cc
diff options
context:
space:
mode:
authorunknown <tomas@whalegate.ndb.mysql.com>2007-09-05 09:22:58 +0200
committerunknown <tomas@whalegate.ndb.mysql.com>2007-09-05 09:22:58 +0200
commitb64b327608917340e96d89033e9aae424b68e5b8 (patch)
tree6b8493340325ac962d15862d8666f6886da64ac6 /sql/ha_ndbcluster_binlog.cc
parent0fc6a9031496c321afd97cc49b74964ff268d8b8 (diff)
downloadmariadb-git-b64b327608917340e96d89033e9aae424b68e5b8.tar.gz
this flush with flag TRUE causes spurious errors in the binlog... as it will insert a STMT_END_F... and hence an invalid binlog (missing table mappings)
Diffstat (limited to 'sql/ha_ndbcluster_binlog.cc')
-rw-r--r--sql/ha_ndbcluster_binlog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_ndbcluster_binlog.cc b/sql/ha_ndbcluster_binlog.cc
index 1cf51307173..0edcbfc7963 100644
--- a/sql/ha_ndbcluster_binlog.cc
+++ b/sql/ha_ndbcluster_binlog.cc
@@ -3212,7 +3212,7 @@ ndb_binlog_thread_handle_non_data_event(THD *thd, Ndb *ndb,
/* make sure to flush any pending events as they can be dependent
on one of the tables being changed below
*/
- thd->binlog_flush_pending_rows_event(TRUE);
+ thd->binlog_flush_pending_rows_event(FALSE);
switch (type)
{