[Patch] Legibility and typos, mark 5 #614
This commit is contained in:
parent
efb1e1bad2
commit
5331b3e591
1 changed files with 13 additions and 13 deletions
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env perl
|
#!/usr/bin/env perl
|
||||||
# mysqltuner.pl - Version 2.0.8
|
# mysqltuner.pl - Version 2.0.9
|
||||||
# High Performance MySQL Tuning Script
|
# High Performance MySQL Tuning Script
|
||||||
# Copyright (C) 2006-2022 Major Hayden - major@mhtx.net
|
# Copyright (C) 2006-2022 Major Hayden - major@mhtx.net
|
||||||
# Copyright (C) 2015-2022 Jean-Marie Renouard - jmrenouard@gmail.com
|
# Copyright (C) 2015-2022 Jean-Marie Renouard - jmrenouard@gmail.com
|
||||||
|
@ -57,7 +57,7 @@ use Cwd 'abs_path';
|
||||||
#use Env;
|
#use Env;
|
||||||
|
|
||||||
# Set up a few variables for use in the script
|
# Set up a few variables for use in the script
|
||||||
my $tunerversion = "2.0.8";
|
my $tunerversion = "2.0.9";
|
||||||
my ( @adjvars, @generalrec );
|
my ( @adjvars, @generalrec );
|
||||||
|
|
||||||
# Set defaults
|
# Set defaults
|
||||||
|
@ -3265,7 +3265,7 @@ sub mysql_stats {
|
||||||
}
|
}
|
||||||
elsif ( $mystat{'Com_select'} == 0 ) {
|
elsif ( $mystat{'Com_select'} == 0 ) {
|
||||||
badprint
|
badprint
|
||||||
"Query cache cannot be analyzed - no SELECT statements executed";
|
"Query cache cannot be analyzed: no SELECT statements executed";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
badprint
|
badprint
|
||||||
|
@ -5451,7 +5451,7 @@ sub mariadb_tokudb {
|
||||||
}
|
}
|
||||||
infoprint "TokuDB is enabled.";
|
infoprint "TokuDB is enabled.";
|
||||||
|
|
||||||
# All is to done here
|
# Not implemented
|
||||||
}
|
}
|
||||||
|
|
||||||
# Recommendations for XtraDB
|
# Recommendations for XtraDB
|
||||||
|
@ -5468,7 +5468,7 @@ sub mariadb_xtradb {
|
||||||
infoprint "XtraDB is enabled.";
|
infoprint "XtraDB is enabled.";
|
||||||
infoprint "Note that MariaDB 10.2 makes use of InnoDB, not XtraDB."
|
infoprint "Note that MariaDB 10.2 makes use of InnoDB, not XtraDB."
|
||||||
|
|
||||||
# All is to done here
|
# Not implemented
|
||||||
}
|
}
|
||||||
|
|
||||||
# Recommendations for RocksDB
|
# Recommendations for RocksDB
|
||||||
|
@ -5484,7 +5484,7 @@ sub mariadb_rockdb {
|
||||||
}
|
}
|
||||||
infoprint "RocksDB is enabled.";
|
infoprint "RocksDB is enabled.";
|
||||||
|
|
||||||
# All is to do here
|
# Not implemented
|
||||||
}
|
}
|
||||||
|
|
||||||
# Recommendations for Spider
|
# Recommendations for Spider
|
||||||
|
@ -5500,7 +5500,7 @@ sub mariadb_spider {
|
||||||
}
|
}
|
||||||
infoprint "Spider is enabled.";
|
infoprint "Spider is enabled.";
|
||||||
|
|
||||||
# All is to do here
|
# Not implemented
|
||||||
}
|
}
|
||||||
|
|
||||||
# Recommendations for Connect
|
# Recommendations for Connect
|
||||||
|
@ -5516,7 +5516,7 @@ sub mariadb_connect {
|
||||||
}
|
}
|
||||||
infoprint "Connect is enabled.";
|
infoprint "Connect is enabled.";
|
||||||
|
|
||||||
# All is to do here
|
# Not implemented
|
||||||
}
|
}
|
||||||
|
|
||||||
# Perl trim function to remove whitespace from the start and end of the string
|
# Perl trim function to remove whitespace from the start and end of the string
|
||||||
|
@ -6924,7 +6924,7 @@ __END__
|
||||||
|
|
||||||
=head1 NAME
|
=head1 NAME
|
||||||
|
|
||||||
MySQLTuner 2.0.8 - MySQL High Performance Tuning Script
|
MySQLTuner 2.0.9 - MySQL High Performance Tuning Script
|
||||||
|
|
||||||
=head1 IMPORTANT USAGE GUIDELINES
|
=head1 IMPORTANT USAGE GUIDELINES
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue