Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions sql/log_event_client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1132,7 +1132,11 @@ void Rows_log_event::change_to_flashback_event(PRINT_EVENT_INFO *print_event_inf
&m_cols, value,
(const uchar*) "", TRUE)))
{
fprintf(stderr, "\nError row length: %zu\n", length1);
fprintf(stderr,
"\nError parsing row event in mysqlbinlog --flashback:\n"
" Row length: %zu\n"
" Expected: valid row data (> 0 length)\n",
length1);
exit(1);
}
value+= length1;
Expand All @@ -1155,7 +1159,11 @@ void Rows_log_event::change_to_flashback_event(PRINT_EVENT_INFO *print_event_inf
&m_cols, value,
(const uchar*) "", TRUE)))
{
fprintf(stderr, "\nError row length: %zu\n", length2);
fprintf(stderr,
"\nError parsing row event in mysqlbinlog --flashback:\n"
" Row length: %zu\n"
" Expected: valid row data (> 0 length)\n",
length2);
exit(1);
}
value+= length2;
Expand Down