1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +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

@ -409,7 +409,7 @@ bool Log_to_csv_event_handler::
}
/* log table entries are not replicated */
if (table->file->ha_write_row_no_binlog(table->record[0]))
if (table->file->ha_write_row(table->record[0]))
{
struct tm start;
localtime_r(&event_time, &start);
@ -612,7 +612,7 @@ bool Log_to_csv_event_handler::
goto err;
/* log table entries are not replicated */
if (table->file->ha_write_row_no_binlog(table->record[0]))
if (table->file->ha_write_row(table->record[0]))
{
struct tm start;
localtime_r(&current_time, &start);