summaryrefslogtreecommitdiff
path: root/sql/log_event.h
diff options
context:
space:
mode:
authorunknown <mats@mats-laptop.(none)>2008-03-28 14:52:33 +0100
committerunknown <mats@mats-laptop.(none)>2008-03-28 14:52:33 +0100
commit2e12a17d17bacd3a5e976c8ea0eb6e25711ced17 (patch)
treefba263faf91663961b68a5d5e020121eb494f12d /sql/log_event.h
parent9d0385d62bfb439855ec8de027776ef847f47369 (diff)
parentf56d77dadf324d62f21e3fff7f460a8aba464605 (diff)
downloadmariadb-git-2e12a17d17bacd3a5e976c8ea0eb6e25711ced17.tar.gz
Merge mkindahl@bk-internal.mysql.com:/home/bk/mysql-5.1-bugteam
into mats-laptop.(none):/home/bk/b29020-mysql-5.1-rpl mysql-test/suite/binlog/r/binlog_base64_flag.result: Auto merged mysql-test/suite/binlog/t/binlog_base64_flag.test: Auto merged mysql-test/suite/rpl/r/rpl_row_create_table.result: Auto merged sql/log.cc: Auto merged sql/log_event.cc: Auto merged sql/log_event.h: Auto merged sql/sql_insert.cc: Auto merged
Diffstat (limited to 'sql/log_event.h')
-rw-r--r--sql/log_event.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/sql/log_event.h b/sql/log_event.h
index 2cf69e975f4..76d92b23189 100644
--- a/sql/log_event.h
+++ b/sql/log_event.h
@@ -1599,31 +1599,6 @@ public: /* !!! Public in this patch to allow old usage */
};
-/**
- @class Muted_query_log_event
-
- Pretends to log SQL queries, but doesn't actually do so. This is
- used internally only and never written to any binlog.
-
- @section Muted_query_log_event_binary_format Binary Format
-
- This log event is not stored, and thus the binary format is 0 bytes
- long. Note that not even the Common-Header is stored.
-*/
-class Muted_query_log_event: public Query_log_event
-{
-public:
-#ifndef MYSQL_CLIENT
- Muted_query_log_event();
-
- bool write(IO_CACHE* file) { return(false); };
- virtual bool write_post_header_for_derived(IO_CACHE* file) { return FALSE; }
-#else
- Muted_query_log_event() {}
-#endif
-};
-
-
#ifdef HAVE_REPLICATION
/**