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.h | |
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.h')
-rw-r--r-- | sql/ha_ndbcluster.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/ha_ndbcluster.h b/sql/ha_ndbcluster.h index 6cc0e423f2f..98f6efe15d8 100644 --- a/sql/ha_ndbcluster.h +++ b/sql/ha_ndbcluster.h @@ -593,6 +593,11 @@ enum THD_NDB_OPTIONS TNO_NO_LOG_SCHEMA_OP= 1 << 0 }; +enum THD_NDB_TRANS_OPTIONS +{ + TNTO_INJECTED_APPLY_STATUS= 1 << 0 +}; + struct Ndb_local_table_statistics { int no_uncommitted_rows_count; ulong last_count; @@ -620,6 +625,7 @@ class Thd_ndb NdbTransaction *stmt; int error; uint32 options; + uint32 trans_options; List<NDB_SHARE> changed_tables; uint query_state; HASH open_tables; |