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

Changes to the code are necessary to compile on Windows. Typecasts are needed in several DBUG_DUMP statements. CAB 01 Nov 2006

This commit is contained in:
cbell/Chuck@mysql_cab.
2006-11-01 11:52:32 -05:00
parent c062178781
commit 367a41c308
2 changed files with 6 additions and 6 deletions

View File

@ -2632,10 +2632,10 @@ int THD::binlog_update_row(TABLE* table, bool is_trans,
my_size_t const after_size= pack_row(table, cols, after_row,
after_record);
DBUG_DUMP("before_record", before_record, table->s->reclength);
DBUG_DUMP("after_record", after_record, table->s->reclength);
DBUG_DUMP("before_row", before_row, before_size);
DBUG_DUMP("after_row", after_row, after_size);
DBUG_DUMP("before_record", (char *)before_record, table->s->reclength);
DBUG_DUMP("after_record", (char *)after_record, table->s->reclength);
DBUG_DUMP("before_row", (char *)before_row, before_size);
DBUG_DUMP("after_row", (char *)after_row, after_size);
Rows_log_event* const ev=
binlog_prepare_pending_rows_event(table, server_id, cols, colcnt,