diff options
author | unknown <tomas@whalegate.ndb.mysql.com> | 2007-09-05 09:22:58 +0200 |
---|---|---|
committer | unknown <tomas@whalegate.ndb.mysql.com> | 2007-09-05 09:22:58 +0200 |
commit | b64b327608917340e96d89033e9aae424b68e5b8 (patch) | |
tree | 6b8493340325ac962d15862d8666f6886da64ac6 /sql/ha_ndbcluster_binlog.cc | |
parent | 0fc6a9031496c321afd97cc49b74964ff268d8b8 (diff) | |
download | mariadb-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.cc | 2 |
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) { |