mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
fix perfschema.start_server_innodb test (related to MDEV-17571)
This commit is contained in:
@ -111,7 +111,7 @@ performance_schema_events_statements_history_size 10
|
||||
performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 80
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 50
|
||||
|
@ -38,7 +38,7 @@ performance_schema_events_statements_history_size 10
|
||||
performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 80
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 50
|
||||
|
@ -21,7 +21,7 @@ show engine PERFORMANCE_SCHEMA status;
|
||||
show status like "performance_schema%";
|
||||
show variables like "performance_schema_max_cond_classes";
|
||||
Variable_name Value
|
||||
performance_schema_max_cond_classes 80
|
||||
performance_schema_max_cond_classes 90
|
||||
select count(*) > 0 from performance_schema.setup_instruments
|
||||
where name like "wait/synch/cond/%";
|
||||
count(*) > 0
|
||||
|
@ -33,7 +33,7 @@ performance_schema_events_statements_history_size 10
|
||||
performance_schema_events_waits_history_long_size 10000
|
||||
performance_schema_events_waits_history_size 10
|
||||
performance_schema_hosts_size 100
|
||||
performance_schema_max_cond_classes 80
|
||||
performance_schema_max_cond_classes 90
|
||||
performance_schema_max_cond_instances 1000
|
||||
performance_schema_max_digest_length 1024
|
||||
performance_schema_max_file_classes 50
|
||||
|
@ -35,7 +35,7 @@
|
||||
#define PFS_MAX_RWLOCK_CLASS 40
|
||||
#endif
|
||||
#ifndef PFS_MAX_COND_CLASS
|
||||
#define PFS_MAX_COND_CLASS 80
|
||||
#define PFS_MAX_COND_CLASS 90
|
||||
#endif
|
||||
#ifndef PFS_MAX_THREAD_CLASS
|
||||
#define PFS_MAX_THREAD_CLASS 50
|
||||
|
Reference in New Issue
Block a user