summaryrefslogtreecommitdiff
path: root/sql/rpl_injector.h
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2015-07-09 14:47:32 +0300
committerMonty <monty@mariadb.org>2015-07-09 14:47:32 +0300
commit9bb8b74e99adced1ccb38ced24a96cf2d1040f39 (patch)
treec58f67cd054fa8829ca11d275f86db7691031eb2 /sql/rpl_injector.h
parenta6c801438717b815288acb72513f5e42fe736b7b (diff)
parent77803703431d79f5dcc2b23b3f878dfdbaf01c2b (diff)
downloadmariadb-git-9bb8b74e99adced1ccb38ced24a96cf2d1040f39.tar.gz
Merge branch '10.1' of github.com:MariaDB/server into 10.1
Conflicts: sql/item_subselect.cc Fixed also typo in comment
Diffstat (limited to 'sql/rpl_injector.h')
-rw-r--r--sql/rpl_injector.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/sql/rpl_injector.h b/sql/rpl_injector.h
index 6be3d7cf4ec..41e1fcf460c 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,