summaryrefslogtreecommitdiff
path: root/sql/log_event.h
diff options
context:
space:
mode:
authorunknown <cbell/Chuck@suse.vabb.com>2006-12-07 09:18:35 -0500
committerunknown <cbell/Chuck@suse.vabb.com>2006-12-07 09:18:35 -0500
commit85a8f7c7a9bf8e067500a78899874f1298e2bdf4 (patch)
treec08b6d74a80b3c187b4d906a036d251117a9fc60 /sql/log_event.h
parentd3f711fafc4928f941b8fc2fbceed5109b5d8bde (diff)
downloadmariadb-git-85a8f7c7a9bf8e067500a78899874f1298e2bdf4.tar.gz
WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code.
Please see worklog for details on files changed. BitKeeper/deleted/.del-have_row_based.require: Delete: mysql-test/r/have_row_based.require BitKeeper/deleted/.del-not_row_based.require: Delete: mysql-test/r/not_row_based.require BitKeeper/deleted/.del-have_row_based.inc: Delete: mysql-test/include/have_row_based.inc BitKeeper/deleted/.del-not_row_based.inc: Delete: mysql-test/include/not_row_based.inc BitKeeper/deleted/.del-replication.m4: Delete: config/ac-macros/replication.m4
Diffstat (limited to 'sql/log_event.h')
-rw-r--r--sql/log_event.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/sql/log_event.h b/sql/log_event.h
index c3f015e723c..8ffbfa7743c 100644
--- a/sql/log_event.h
+++ b/sql/log_event.h
@@ -1689,8 +1689,6 @@ public:
#endif
char *str_to_hex(char *to, const char *from, uint len);
-#ifdef HAVE_ROW_BASED_REPLICATION
-
/*****************************************************************************
Table map log event class
@@ -2019,7 +2017,7 @@ public:
Write_rows_log_event(const char *buf, uint event_len,
const Format_description_log_event *description_event);
#endif
-#if !defined(MYSQL_CLIENT) && defined(HAVE_ROW_BASED_REPLICATION)
+#if !defined(MYSQL_CLIENT)
static bool binlog_row_logging_function(THD *thd, TABLE *table,
bool is_transactional,
MY_BITMAP *cols,
@@ -2084,7 +2082,7 @@ public:
const Format_description_log_event *description_event);
#endif
-#if !defined(MYSQL_CLIENT) && defined(HAVE_ROW_BASED_REPLICATION)
+#if !defined(MYSQL_CLIENT)
static bool binlog_row_logging_function(THD *thd, TABLE *table,
bool is_transactional,
MY_BITMAP *cols,
@@ -2154,7 +2152,7 @@ public:
Delete_rows_log_event(const char *buf, uint event_len,
const Format_description_log_event *description_event);
#endif
-#if !defined(MYSQL_CLIENT) && defined(HAVE_ROW_BASED_REPLICATION)
+#if !defined(MYSQL_CLIENT)
static bool binlog_row_logging_function(THD *thd, TABLE *table,
bool is_transactional,
MY_BITMAP *cols,
@@ -2188,6 +2186,4 @@ private:
#endif
};
-#endif /* HAVE_ROW_BASED_REPLICATION */
-
#endif /* _log_event_h */