mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-24 13:25:01 +00:00
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:
@@ -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
|
||||
},
|
||||
},
|
||||
{
|
||||
|
Reference in New Issue
Block a user