diff options
author | unknown <tomas@whalegate.ndb.mysql.com> | 2007-08-30 11:46:30 +0200 |
---|---|---|
committer | unknown <tomas@whalegate.ndb.mysql.com> | 2007-08-30 11:46:30 +0200 |
commit | 06d1c6287711978e1add3fa3ed2baf84c53d0b54 (patch) | |
tree | c9c2a08fb8b617ff41f85fee278b0597874306da /sql/ha_ndbcluster_binlog.h | |
parent | bfa05f52a2248dcb3f45b2f2740adc9bcb6d8839 (diff) | |
download | mariadb-git-06d1c6287711978e1add3fa3ed2baf84c53d0b54.tar.gz |
Bug#20872 master*.err: miscellaneous error messages
sql/ha_ndbcluster.cc:
Bug#20872 master*.err: miscellaneous error messages
- only allocate share if fully successfull
sql/ha_ndbcluster_binlog.cc:
Bug#20872 master*.err: miscellaneous error messages
- only allocate share if fully successfull
- no need to print error, my_errno is set
sql/ha_ndbcluster_binlog.h:
Bug#20872 master*.err: miscellaneous error messages
- only allocate share if fully successfull
Diffstat (limited to 'sql/ha_ndbcluster_binlog.h')
-rw-r--r-- | sql/ha_ndbcluster_binlog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_ndbcluster_binlog.h b/sql/ha_ndbcluster_binlog.h index b5b8d0d9745..aab13c6e902 100644 --- a/sql/ha_ndbcluster_binlog.h +++ b/sql/ha_ndbcluster_binlog.h @@ -124,7 +124,7 @@ void ndbcluster_binlog_init_handlerton(); /* Initialize the binlog part of the NDB_SHARE */ -void ndbcluster_binlog_init_share(NDB_SHARE *share, TABLE *table); +int ndbcluster_binlog_init_share(NDB_SHARE *share, TABLE *table); bool ndbcluster_check_if_local_table(const char *dbname, const char *tabname); bool ndbcluster_check_if_local_tables_in_db(THD *thd, const char *dbname); |