PT-2340 - Support MySQL 8.4

- Adjusted tools and tests which fail due to fixed update-modules command
- Adjsted t/pt-table-checksum/basics.t test for 8.0
This commit is contained in:
Sveta Smirnova
2024-11-13 21:23:39 +03:00
parent bb66ab0845
commit 8b802722db
18 changed files with 67 additions and 48 deletions

View File

@@ -3445,7 +3445,7 @@ sub get_rules {
code => sub {
my ( %args ) = @_;
return _var_eq($args{variables}->{innodb_buffer_pool_size},
128 * 1_048_576); # 10M
128 * 1_048_576); # 128M
},
},
{
@@ -3502,7 +3502,7 @@ sub get_rules {
code => sub {
my ( %args ) = @_;
return _var_gt($args{variables}->{innodb_log_buffer_size},
64 * 1_048_576); # 16M
64 * 1_048_576); # 64M
},
},
{
@@ -3510,7 +3510,7 @@ sub get_rules {
code => sub {
my ( %args ) = @_;
return _var_eq($args{variables}->{innodb_log_file_size},
48 * 1_048_576); # 5M
48 * 1_048_576); # 48M
},
},
{