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:
@ -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(¤t_time, &start);
|
||||
|
Reference in New Issue
Block a user