Commit a2537650 authored by Guilhem Bichot's avatar Guilhem Bichot

In pushbuild2 when testing Maria's recovery, it can happen that a page was not entirely written

(i.e. file's size % 8192 != 0). Don't assert on this, Recovery is supposed to fix it.
parent e94db1ac
......@@ -171,7 +171,8 @@ int maria_recover_error_handler_hook(uint error, const char *str,
return (*save_error_handler_hook)(error, str, flags);
}
#define ALERT_USER() DBUG_ASSERT(0)
/* Define this if you want gdb to break in some interesting situations */
#define ALERT_USER()
static void print_preamble()
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment