summaryrefslogtreecommitdiff
path: root/sql/ha_ndbcluster_binlog.cc
diff options
context:
space:
mode:
authorunknown <pekka@mysql.com>2006-02-17 11:53:39 +0100
committerunknown <pekka@mysql.com>2006-02-17 11:53:39 +0100
commitf9b94301efb32427210413acced20df514b68683 (patch)
tree718abf5d892ceb00a0a686b9f4fc8bbc58923cbd /sql/ha_ndbcluster_binlog.cc
parent4e5c55e579e93e11b1530c1df32f14336f1ab680 (diff)
downloadmariadb-git-f9b94301efb32427210413acced20df514b68683.tar.gz
ndb - rbr blobs: remove obsolete problem-causing temporary fix
sql/ha_ndbcluster_binlog.cc: remove fix_blob_events storage/ndb/include/ndbapi/NdbDictionary.hpp: remove fix_blob_events storage/ndb/src/ndbapi/NdbDictionary.cpp: remove fix_blob_events storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp: remove fix_blob_events storage/ndb/src/ndbapi/NdbDictionaryImpl.hpp: remove fix_blob_events
Diffstat (limited to 'sql/ha_ndbcluster_binlog.cc')
-rw-r--r--sql/ha_ndbcluster_binlog.cc17
1 files changed, 0 insertions, 17 deletions
diff --git a/sql/ha_ndbcluster_binlog.cc b/sql/ha_ndbcluster_binlog.cc
index bcbfafccdd5..c1aa4820cae 100644
--- a/sql/ha_ndbcluster_binlog.cc
+++ b/sql/ha_ndbcluster_binlog.cc
@@ -2082,23 +2082,6 @@ ndbcluster_create_event_ops(NDB_SHARE *share, const NDBTAB *ndbtab,
if (share->flags & NSF_BLOB_FLAG)
op->mergeEvents(true); // currently not inherited from event
- if (share->flags & NSF_BLOB_FLAG)
- {
- /*
- * Given servers S1 S2, following results in out-of-date
- * event->m_tableImpl and column->m_blobTable.
- *
- * S1: create table t1(a int primary key);
- * S2: drop table t1;
- * S1: create table t2(a int primary key, b blob);
- * S1: alter table t2 add x int;
- * S1: alter table t2 drop x;
- *
- * TODO fix at right place before we get here
- */
- ndb->getDictionary()->fix_blob_events(ndbtab, event_name);
- }
-
int n_columns= ndbtab->getNoOfColumns();
int n_fields= table ? table->s->fields : 0; // XXX ???
for (int j= 0; j < n_columns; j++)