Commit 84ce6819 authored by Jan Lindström's avatar Jan Lindström

MDEV-10917: Warning suggesting that innodb_page_size is experimental may be inaccurate

Removed experimental from message.
parent 885577fb
......@@ -3444,15 +3444,16 @@ innobase_init(
}
if (UNIV_PAGE_SIZE != UNIV_PAGE_SIZE_DEF) {
fprintf(stderr,
"InnoDB: Warning: innodb_page_size has been "
"changed from default value %d to %ldd. (###EXPERIMENTAL### "
"operation)\n", UNIV_PAGE_SIZE_DEF, UNIV_PAGE_SIZE);
ib_logf(IB_LOG_LEVEL_INFO,
"innodb_page_size has been "
"changed from default value %d to %ldd.",
UNIV_PAGE_SIZE_DEF, UNIV_PAGE_SIZE);
/* There is hang on buffer pool when trying to get a new
page if buffer pool size is too small for large page sizes */
if (innobase_buffer_pool_size < (24 * 1024 * 1024)) {
fprintf(stderr, "InnoDB: Error: innobase_page_size %lu requires "
ib_logf(IB_LOG_LEVEL_INFO,
"innobase_page_size %lu requires "
"innodb_buffer_pool_size > 24M current %lld",
UNIV_PAGE_SIZE, innobase_buffer_pool_size);
goto error;
......
......@@ -3859,17 +3859,19 @@ innobase_init(
}
if (UNIV_PAGE_SIZE != UNIV_PAGE_SIZE_DEF) {
fprintf(stderr,
"InnoDB: Warning: innodb_page_size has been "
"changed from default value %d to %ldd. (###EXPERIMENTAL### "
"operation)\n", UNIV_PAGE_SIZE_DEF, UNIV_PAGE_SIZE);
ib_logf(IB_LOG_LEVEL_INFO,
"innodb_page_size has been "
"changed from default value %d to %ldd.",
UNIV_PAGE_SIZE_DEF, UNIV_PAGE_SIZE);
/* There is hang on buffer pool when trying to get a new
page if buffer pool size is too small for large page sizes */
if (innobase_buffer_pool_size < (24 * 1024 * 1024)) {
fprintf(stderr, "InnoDB: Error: innobase_page_size %lu requires "
ib_logf(IB_LOG_LEVEL_INFO,
"innobase_page_size %lu requires "
"innodb_buffer_pool_size > 24M current %lld",
UNIV_PAGE_SIZE, innobase_buffer_pool_size);
goto error;
}
}
......
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