1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

handler::ha_write_row_no_binlog() hack removed,

existing table->no_replicate code is used instead
This commit is contained in:
serg@janus.mylan
2007-07-30 19:56:02 +02:00
parent 94820f1976
commit f451ac1f96
4 changed files with 3 additions and 16 deletions

View File

@ -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;