diff options
author | unknown <tomas@whalegate.ndb.mysql.com> | 2007-04-18 16:02:20 +0200 |
---|---|---|
committer | unknown <tomas@whalegate.ndb.mysql.com> | 2007-04-18 16:02:20 +0200 |
commit | ca56499957e00f0310e5324f7d997fe59dfb807d (patch) | |
tree | eb599c5d7c5074a04540cc14f3b35a88c1fd822a /sql/ha_ndbcluster.h | |
parent | b895ed4cdf2a61a5581f7491be59d18dac35a566 (diff) | |
download | mariadb-git-ca56499957e00f0310e5324f7d997fe59dfb807d.tar.gz |
Bug #27076 Cluster does not honor SQL_LOG_BIN flag
- both for data schema operations
- also make sure schema events vet the right server id when injected into the binlog
- use same mechanism to signal server_id in bug#17095, and reserve some "id's" for flagging special conditions on the event, in this case do not log it
- enable printing of server ids in the testcases to show that we cot it right
Diffstat (limited to 'sql/ha_ndbcluster.h')
-rw-r--r-- | sql/ha_ndbcluster.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/ha_ndbcluster.h b/sql/ha_ndbcluster.h index fe79135a47d..57b7203352f 100644 --- a/sql/ha_ndbcluster.h +++ b/sql/ha_ndbcluster.h @@ -623,7 +623,8 @@ class Thd_ndb uint lock_count; NdbTransaction *all; NdbTransaction *stmt; - int error; + bool m_error; + bool m_slow_path; uint32 options; uint32 trans_options; List<NDB_SHARE> changed_tables; @@ -969,6 +970,7 @@ private: ha_rows m_ops_pending; bool m_skip_auto_increment; bool m_blobs_pending; + bool m_slow_path; my_ptrdiff_t m_blobs_offset; // memory for blobs in one tuple char *m_blobs_buffer; |