summaryrefslogtreecommitdiff
path: root/sql/log.h
diff options
context:
space:
mode:
authorAlexey Kopytov <Alexey.Kopytov@Sun.com>2010-05-11 12:23:57 +0400
committerAlexey Kopytov <Alexey.Kopytov@Sun.com>2010-05-11 12:23:57 +0400
commite47ab5a604954b0019ea9fe90cdb91023e55be07 (patch)
tree703aceeb455a79b6ec6291bdc71ff13ffa24a2c0 /sql/log.h
parentad43230e3bd5a419709a2559478be5cfb2cae3d2 (diff)
parent455f754e6ba4de3d3b527aad6ac317b7e5994b86 (diff)
downloadmariadb-git-e47ab5a604954b0019ea9fe90cdb91023e55be07.tar.gz
Manual merge from mysql-5.1-bugteam to mysql-trunk-merge.
Text conflict in sql/log.cc Text conflict in sql/log.h Text conflict in sql/sql_class.cc Text conflict in sql/sql_load.cc
Diffstat (limited to 'sql/log.h')
-rw-r--r--sql/log.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/sql/log.h b/sql/log.h
index 12e02969485..cd3faace598 100644
--- a/sql/log.h
+++ b/sql/log.h
@@ -299,8 +299,6 @@ class MYSQL_BIN_LOG: public TC_LOG, private MYSQL_LOG
*/
bool no_auto_events;
- ulonglong m_table_map_version;
-
/* pointer to the sync period variable, for binlog this will be
sync_binlog_period, for relay log this will be
sync_relay_log_period
@@ -353,13 +351,6 @@ public:
void unlog(ulong cookie, my_xid xid);
int recover(IO_CACHE *log, Format_description_log_event *fdle);
#if !defined(MYSQL_CLIENT)
- bool is_table_mapped(TABLE *table) const
- {
- return table->s->table_map_version == table_map_version();
- }
-
- ulonglong table_map_version() const { return m_table_map_version; }
- void update_table_map_version() { ++m_table_map_version; }
int flush_and_set_pending_rows_event(THD *thd, Rows_log_event* event,
bool is_transactional);