Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
84ce6819
Commit
84ce6819
authored
Oct 27, 2016
by
Jan Lindström
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-10917: Warning suggesting that innodb_page_size is experimental may be inaccurate
Removed experimental from message.
parent
885577fb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
10 deletions
+13
-10
storage/innobase/handler/ha_innodb.cc
storage/innobase/handler/ha_innodb.cc
+6
-5
storage/xtradb/handler/ha_innodb.cc
storage/xtradb/handler/ha_innodb.cc
+7
-5
No files found.
storage/innobase/handler/ha_innodb.cc
View file @
84ce6819
...
...
@@ -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
;
...
...
storage/xtradb/handler/ha_innodb.cc
View file @
84ce6819
...
...
@@ -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
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment