diff options
author | unknown <tomas@whalegate.ndb.mysql.com> | 2007-04-03 07:20:55 +0200 |
---|---|---|
committer | unknown <tomas@whalegate.ndb.mysql.com> | 2007-04-03 07:20:55 +0200 |
commit | 4c6696019c31a5eeee6384d2f44a86e953a91014 (patch) | |
tree | 5fafd6815a2144ccf1e4240367ebe6e83b77b300 /sql/ha_ndbcluster_binlog.cc | |
parent | 5c602713da0eaec2f2e1f6b34ba4cb4447f5932c (diff) | |
download | mariadb-git-4c6696019c31a5eeee6384d2f44a86e953a91014.tar.gz |
Bug #26783 replication status unknown after cluster or mysqld failure
- update the ndb_apply_status table with binlog info
BitKeeper/etc/ignore:
Added client/rpl_constants.h to the ignore list
mysql-test/r/rpl_ndb_stm_innodb.result:
New BitKeeper file ``mysql-test/r/rpl_ndb_stm_innodb.result''
mysql-test/t/rpl_ndb_stm_innodb-master.opt:
New BitKeeper file ``mysql-test/t/rpl_ndb_stm_innodb-master.opt''
mysql-test/t/rpl_ndb_stm_innodb.test:
New BitKeeper file ``mysql-test/t/rpl_ndb_stm_innodb.test''
Diffstat (limited to 'sql/ha_ndbcluster_binlog.cc')
-rw-r--r-- | sql/ha_ndbcluster_binlog.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/ha_ndbcluster_binlog.cc b/sql/ha_ndbcluster_binlog.cc index 8b51ac68e66..060bc0beff4 100644 --- a/sql/ha_ndbcluster_binlog.cc +++ b/sql/ha_ndbcluster_binlog.cc @@ -953,8 +953,8 @@ static void ndbcluster_get_schema(NDB_SHARE *share, /* helper function to pack a ndb varchar */ -static char *ndb_pack_varchar(const NDBCOL *col, char *buf, - const char *str, int sz) +char *ndb_pack_varchar(const NDBCOL *col, char *buf, + const char *str, int sz) { switch (col->getArrayType()) { |