Commit 6795a545 authored by Michael Widenius's avatar Michael Widenius

Trivial optimizations and cleanups

parent ae6c5d0d
...@@ -365,8 +365,8 @@ my_bool _ma_bitmap_flush_all(MARIA_SHARE *share) ...@@ -365,8 +365,8 @@ my_bool _ma_bitmap_flush_all(MARIA_SHARE *share)
*/ */
if (bitmap->changed) if (bitmap->changed)
{ {
res= write_changed_bitmap(share, bitmap);
bitmap->changed= FALSE; bitmap->changed= FALSE;
res= write_changed_bitmap(share, bitmap);
} }
/* /*
We do NOT use FLUSH_KEEP_LAZY because we must be sure that bitmap We do NOT use FLUSH_KEEP_LAZY because we must be sure that bitmap
......
...@@ -827,7 +827,6 @@ static int collect_tables(LEX_STRING *str, LSN checkpoint_start_log_horizon) ...@@ -827,7 +827,6 @@ static int collect_tables(LEX_STRING *str, LSN checkpoint_start_log_horizon)
not seen again in the loop. not seen again in the loop.
*/ */
share->in_checkpoint= MARIA_CHECKPOINT_LOOKS_AT_ME; share->in_checkpoint= MARIA_CHECKPOINT_LOOKS_AT_ME;
/** @todo avoid strlen() */
total_names_length+= share->open_file_name.length; total_names_length+= share->open_file_name.length;
} }
} }
......
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