3610 Luis Soares 2011-11-15
BUG#11760927
Follow up to fix freebsd compile issue.
modified:
sql/log_event.cc
3609 Luis Soares 2011-11-15 [merge]
BUG#11760927
Automerged approved bzr bundle in latest mysql-5.5.
added:
mysql-test/suite/rpl/r/rpl_row_find_row_debug.result
mysql-test/suite/rpl/t/rpl_row_find_row_debug.test
modified:
sql/log_event.cc
sql/log_event.h
sql/rpl_rli.cc
sql/rpl_rli.h
=== modified file 'sql/log_event.cc'
--- a/sql/log_event.cc 2011-11-11 17:26:56 +0000
+++ b/sql/log_event.cc 2011-11-15 14:38:58 +0000
@@ -9285,7 +9285,7 @@ void issue_long_find_row_warning(Log_eve
DBUG_EXECUTE_IF("inject_long_find_row_note",
stmt_ts-=(LONG_FIND_ROW_THRESHOLD*2););
- time_t delta= (now - stmt_ts);
+ long delta= (long) (now - stmt_ts);
if (delta > LONG_FIND_ROW_THRESHOLD)
{
@@ -9295,7 +9295,7 @@ void issue_long_find_row_warning(Log_eve
sql_print_information("The slave is applying a ROW event on behalf of a%s statement "
"on table %s and is currently taking a considerable amount "
- "of time (%lu seconds). This is due to the fact that it is %s "
+ "of time (%ld seconds). This is due to the fact that it is %s "
"while looking up records to be processed. Consider adding a "
"primary key (or unique key) to the table to improve "
"performance.", evt_type, table_name, delta, scan_type);
No bundle (reason: useless for push emails).
| Thread |
|---|
| • bzr push into mysql-5.5 branch (luis.soares:3609 to 3610) Bug#11760927 | Luis Soares | 16 Nov |