summaryrefslogtreecommitdiff
path: root/sql/handler.cc
diff options
context:
space:
mode:
authorserg@janus.mylan <>2007-07-30 19:56:02 +0200
committerserg@janus.mylan <>2007-07-30 19:56:02 +0200
commitf451ac1f966773cafca1019880ca7101a5397f9c (patch)
tree69736a692db7e388c742938c122e14e152af4728 /sql/handler.cc
parent94820f1976e70744d7ac6ff06edb9caf57df6a32 (diff)
downloadmariadb-git-f451ac1f966773cafca1019880ca7101a5397f9c.tar.gz
handler::ha_write_row_no_binlog() hack removed,
existing table->no_replicate code is used instead
Diffstat (limited to 'sql/handler.cc')
-rw-r--r--sql/handler.cc13
1 files changed, 0 insertions, 13 deletions
diff --git a/sql/handler.cc b/sql/handler.cc
index c4abfeea0a8..0da56350de5 100644
--- a/sql/handler.cc
+++ b/sql/handler.cc
@@ -3654,19 +3654,6 @@ int handler::ha_write_row(uchar *buf)
}
-/**
- Write a record to the engine bypassing row-level binary logging.
- This method is used internally by the server for writing to
- performance schema tables, which are never replicated.
- TODO: Merge this function with ha_write_row(), and provide a way
- to disable the binlog there.
-*/
-int handler::ha_write_row_no_binlog(uchar *buf)
-{
- return write_row(buf);
-}
-
-
int handler::ha_update_row(const uchar *old_data, uchar *new_data)
{
int error;