Update for MariaDB 10.8 #601
This commit is contained in:
parent
461c8fb60e
commit
5ea10e9c24
1 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env perl
|
||||
# mysqltuner.pl - Version 2.0.1
|
||||
# mysqltuner.pl - Version 2.0.2
|
||||
# High Performance MySQL Tuning Script
|
||||
# Copyright (C) 2006-2022 Major Hayden - major@mhtx.net
|
||||
# Copyright (C) 2015-2022 Jean-Marie Renouard - jmrenouard@gmail.com
|
||||
|
@ -57,7 +57,7 @@ use Cwd 'abs_path';
|
|||
#use Env;
|
||||
|
||||
# Set up a few variables for use in the script
|
||||
my $tunerversion = "2.0.1";
|
||||
my $tunerversion = "2.0.2";
|
||||
my ( @adjvars, @generalrec );
|
||||
|
||||
# Set defaults
|
||||
|
@ -2209,6 +2209,7 @@ sub validate_mysql_version {
|
|||
or mysql_version_eq( 10, 5 )
|
||||
or mysql_version_eq( 10, 6 )
|
||||
or mysql_version_eq( 10, 7 )
|
||||
or mysql_version_eq( 10, 8 )
|
||||
)
|
||||
{
|
||||
goodprint "Currently running supported MySQL version "
|
||||
|
@ -6888,7 +6889,7 @@ __END__
|
|||
|
||||
=head1 NAME
|
||||
|
||||
MySQLTuner 2.0.1 - MySQL High Performance Tuning Script
|
||||
MySQLTuner 2.0.2 - MySQL High Performance Tuning Script
|
||||
|
||||
=head1 IMPORTANT USAGE GUIDELINES
|
||||
|
||||
|
|
Loading…
Reference in a new issue