Commit d03abc71 authored by Jan Lindström's avatar Jan Lindström

MDEV-12609: Allow suppression of InnoDB log messages about reserving extents

Removed this output.
parent d8d39721
......@@ -2729,7 +2729,6 @@ fsp_reserve_free_extents(
ibool success;
ulint n_pages_added;
size_t total_reserved = 0;
ulint rounds = 0;
ut_ad(mtr);
*n_reserved = n_ext;
......@@ -2809,17 +2808,7 @@ fsp_reserve_free_extents(
space_header, mtr);
if (success && n_pages_added > 0) {
rounds++;
total_reserved += n_pages_added;
if (rounds > 50) {
ib_logf(IB_LOG_LEVEL_INFO,
"Space id %lu trying to reserve %lu extents actually reserved %lu "
" reserve %lu free %lu size %lu rounds %lu total_reserved %llu",
space, n_ext, n_pages_added, reserve, n_free, size, rounds, (ullint) total_reserved);
}
goto try_again;
}
......
......@@ -2738,7 +2738,6 @@ fsp_reserve_free_extents(
ibool success;
ulint n_pages_added;
size_t total_reserved = 0;
ulint rounds = 0;
ut_ad(mtr);
*n_reserved = n_ext;
......@@ -2817,17 +2816,7 @@ fsp_reserve_free_extents(
success = fsp_try_extend_data_file(&n_pages_added, space,
space_header, mtr);
if (success && n_pages_added > 0) {
rounds++;
total_reserved += n_pages_added;
if (rounds > 50) {
ib_logf(IB_LOG_LEVEL_INFO,
"Space id %lu trying to reserve %lu extents actually reserved %lu "
" reserve %lu free %lu size %lu rounds %lu total_reserved %llu",
space, n_ext, n_pages_added, reserve, n_free, size, rounds, (ullint) total_reserved);
}
goto try_again;
}
......
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