diff options
author | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2015-04-02 19:22:41 +0300 |
---|---|---|
committer | Vicențiu Ciorbaru <vicentiu@mariadb.org> | 2015-06-30 13:17:09 +0300 |
commit | c096caee71b35198d9f1fb35d1fbd5ea796cf878 (patch) | |
tree | f0b06e1b3cc6dcfa3f23db295e90f5052b4c3d23 /sql/rpl_injector.h | |
parent | e53ad95b733e5a3b67b31d231616b619b634c6da (diff) | |
download | mariadb-git-c096caee71b35198d9f1fb35d1fbd5ea796cf878.tar.gz |
[MDEV-6877] Removed unneded code from rpl_injector
The rpl_injector code is now considered dead code.
This patch only removes the minimum number of function calls
to allow implementing binlog_row_image. The other functions are to be
removed in a subsequent patch.
Diffstat (limited to 'sql/rpl_injector.h')
-rw-r--r-- | sql/rpl_injector.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/sql/rpl_injector.h b/sql/rpl_injector.h index 98788955e24..d46efa2a281 100644 --- a/sql/rpl_injector.h +++ b/sql/rpl_injector.h @@ -181,27 +181,6 @@ public: int use_table(server_id_type sid, table tbl); /* - Add a 'write row' entry to the transaction. - */ - int write_row (server_id_type sid, table tbl, - MY_BITMAP const *cols, size_t colcnt, - record_type record); - - /* - Add a 'delete row' entry to the transaction. - */ - int delete_row(server_id_type sid, table tbl, - MY_BITMAP const *cols, size_t colcnt, - record_type record); - - /* - Add an 'update row' entry to the transaction. - */ - int update_row(server_id_type sid, table tbl, - MY_BITMAP const *cols, size_t colcnt, - record_type before, record_type after); - - /* Commit a transaction. This member function will clean up after a sequence of *_row calls by, |