Merge pull request #2 from longradix/longradix-patch-2

Update mysqltuner.pl: probably a remnant from an old version.
This commit is contained in:
Long Radix 2023-03-16 15:04:21 +01:00 committed by GitHub
commit 95bb587ee1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2406,7 +2406,7 @@ sub check_storage_engines {
}
elsif ( mysql_version_ge( 5, 1, 5 ) ) {
my @engineresults = select_array
"SELECT ENGINE,SUPPORT FROM information_schema.ENGINES WHERE ENGINE NOT IN ('performance_schema','MyISAM','MERGE','MEMORY') ORDER BY ENGINE ASC";
"SELECT ENGINE, SUPPORT FROM information_schema.ENGINES WHERE ENGINE NOT IN ('MyISAM', 'MERGE', 'MEMORY') ORDER BY ENGINE";
foreach my $line (@engineresults) {
my ( $engine, $engineenabled );
( $engine, $engineenabled ) = $line =~ /([a-zA-Z_]*)\s+([a-zA-Z]+)/;