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

Removed experimental from message.
This commit is contained in:
Jan Lindström 2016-10-27 15:01:15 +03:00
parent 885577fb10
commit 84ce681969
2 changed files with 13 additions and 10 deletions

View file

@ -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;

View file

@ -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;
}
}