diff options
author | unknown <serg@janus.mylan> | 2007-07-30 19:56:02 +0200 |
---|---|---|
committer | unknown <serg@janus.mylan> | 2007-07-30 19:56:02 +0200 |
commit | d9037b26e492a1bf56fcacb2358caa5850d0cc32 (patch) | |
tree | 69736a692db7e388c742938c122e14e152af4728 /sql/handler.cc | |
parent | d803c8663be28432c50fca8940fcd2fee6925a14 (diff) | |
download | mariadb-git-d9037b26e492a1bf56fcacb2358caa5850d0cc32.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.cc | 13 |
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; |