This repository was archived by the owner on Aug 28, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed
mysql-test/suite/sysschema Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,11 @@ SET ENABLED = 'NO'
1010UPDATE performance_schema.setup_consumers
1111SET ENABLED = 'NO'
1212 WHERE NAME LIKE '%\_history\_long';
13- UPDATE performance_schema.threads SET INSTRUMENTED = 'NO' WHERE NAME LIKE 'thread/innodb/srv\_%';
13+ UPDATE performance_schema.threads
14+ SET INSTRUMENTED = 'NO'
15+ WHERE NAME LIKE 'thread/innodb/srv\_%'
16+ OR NAME LIKE '%con\_%'
17+ OR NAME LIKE '%signal_handler%';
1418CALL sys.ps_setup_show_enabled(FALSE, FALSE);
1519performance_schema_enabled
16201
@@ -208,7 +212,6 @@ innodb/page_cleaner_thread BACKGROUND
208212root@localhost FOREGROUND
209213sql/compress_gtid_table FOREGROUND
210214sql/main BACKGROUND
211- sql/signal_handler BACKGROUND
212215sql/thread_timer_notifier BACKGROUND
213216CALL sys.ps_setup_show_enabled(TRUE, TRUE);
214217performance_schema_enabled
@@ -247,7 +250,6 @@ innodb/page_cleaner_thread BACKGROUND
247250root@localhost FOREGROUND
248251sql/compress_gtid_table FOREGROUND
249252sql/main BACKGROUND
250- sql/signal_handler BACKGROUND
251253sql/thread_timer_notifier BACKGROUND
252254enabled_instruments timed
253255idle YES
Original file line number Diff line number Diff line change @@ -20,8 +20,12 @@ UPDATE performance_schema.setup_consumers
2020 SET ENABLED = 'NO'
2121 WHERE NAME LIKE '%\_history\_long';
2222
23- # Disable some of the background threads:
24- UPDATE performance_schema.threads SET INSTRUMENTED = 'NO' WHERE NAME LIKE 'thread/innodb/srv\_%';
23+ # Disable some of the background threads (including those that differ between unix like and Windows systems):
24+ UPDATE performance_schema.threads
25+ SET INSTRUMENTED = 'NO'
26+ WHERE NAME LIKE 'thread/innodb/srv\_%'
27+ OR NAME LIKE '%con\_%'
28+ OR NAME LIKE '%signal_handler%';
2529
2630# Show limited info (no thread or instrument info)
2731CALL sys.ps_setup_show_enabled(FALSE, FALSE);
You can’t perform that action at this time.
0 commit comments