diff options
author | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2015-04-02 20:46:21 +0300 |
---|---|---|
committer | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2015-06-30 13:17:09 +0300 |
commit | edff3f3fa91eb0433d94385cbe119e62c4a2afdb (patch) | |
tree | 798be12a38120cf4d269620667aba70cbbbd5044 /sql/log_event.h | |
parent | 724d5ae5f13d1414a0d4149918547ae50556b894 (diff) | |
download | mariadb-git-edff3f3fa91eb0433d94385cbe119e62c4a2afdb.tar.gz |
[MDEV-6877] Update Update, Delete and Write row log event
The row events no longer require columns arguments.
Diffstat (limited to 'sql/log_event.h')
-rw-r--r-- | sql/log_event.h | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/sql/log_event.h b/sql/log_event.h index 13d7242c98c..6c6fb1f4381 100644 --- a/sql/log_event.h +++ b/sql/log_event.h @@ -4518,8 +4518,8 @@ public: }; #if defined(MYSQL_SERVER) - Write_rows_log_event(THD*, TABLE*, ulong table_id, - MY_BITMAP const *cols, bool is_transactional); + Write_rows_log_event(THD*, TABLE*, ulong table_id, + bool is_transactional); #endif #ifdef HAVE_REPLICATION Write_rows_log_event(const char *buf, uint event_len, @@ -4581,12 +4581,6 @@ public: #ifdef MYSQL_SERVER Update_rows_log_event(THD*, TABLE*, ulong table_id, - MY_BITMAP const *cols_bi, - MY_BITMAP const *cols_ai, - bool is_transactional); - - Update_rows_log_event(THD*, TABLE*, ulong table_id, - MY_BITMAP const *cols, bool is_transactional); void init(MY_BITMAP const *cols); @@ -4665,8 +4659,7 @@ public: }; #ifdef MYSQL_SERVER - Delete_rows_log_event(THD*, TABLE*, ulong, - MY_BITMAP const *cols, bool is_transactional); + Delete_rows_log_event(THD*, TABLE*, ulong, bool is_transactional); #endif #ifdef HAVE_REPLICATION Delete_rows_log_event(const char *buf, uint event_len, |