Skip to content

Commit dc5c2ab

Browse files
authored
Merge pull request #710 from githuhb/master
Changed InnoDb to InnoDB for consistency on the report.
2 parents fa6fdfb + 5cb0ef3 commit dc5c2ab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

mysqltuner.pl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6303,23 +6303,23 @@ sub mysql_innodb {
63036303
# InnoDB Buffer Pool Size
63046304
if ( $arch == 32 && $myvar{'innodb_buffer_pool_size'} > 4294967295 ) {
63056305
badprint
6306-
"InnoDb Buffer Pool size limit reached for 32 bits architecture: ("
6306+
"InnoDB Buffer Pool size limit reached for 32 bits architecture: ("
63076307
. hr_bytes(4294967295) . " )";
63086308
push( @adjvars,
63096309
"limit innodb_buffer_pool_size under "
63106310
. hr_bytes(4294967295)
63116311
. " for 32 bits architecture" );
63126312
}
63136313
if ( $arch == 32 && $myvar{'innodb_buffer_pool_size'} < 4294967295 ) {
6314-
goodprint "InnoDb Buffer Pool size ( "
6314+
goodprint "InnoDB Buffer Pool size ( "
63156315
. hr_bytes( $myvar{'innodb_buffer_pool_size'} )
63166316
. " ) under limit for 32 bits architecture: ("
63176317
. hr_bytes(4294967295) . ")";
63186318
}
63196319
if ( $arch == 64
63206320
&& $myvar{'innodb_buffer_pool_size'} > 18446744073709551615 )
63216321
{
6322-
badprint "InnoDb Buffer Pool size limit("
6322+
badprint "InnoDB Buffer Pool size limit("
63236323
. hr_bytes(18446744073709551615)
63246324
. ") reached for 64 bits architecture";
63256325
push( @adjvars,
@@ -6331,7 +6331,7 @@ sub mysql_innodb {
63316331
if ( $arch == 64
63326332
&& $myvar{'innodb_buffer_pool_size'} < 18446744073709551615 )
63336333
{
6334-
goodprint "InnoDb Buffer Pool size ( "
6334+
goodprint "InnoDB Buffer Pool size ( "
63356335
. hr_bytes( $myvar{'innodb_buffer_pool_size'} )
63366336
. " ) under limit for 64 bits architecture: ("
63376337
. hr_bytes(18446744073709551615) . " )";

0 commit comments

Comments
 (0)