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'
10
10
UPDATE performance_schema.setup_consumers
11
11
SET ENABLED = 'NO'
12
12
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%';
14
18
CALL sys.ps_setup_show_enabled(FALSE, FALSE);
15
19
performance_schema_enabled
16
20
1
@@ -208,7 +212,6 @@ innodb/page_cleaner_thread BACKGROUND
208
212
root@localhost FOREGROUND
209
213
sql/compress_gtid_table FOREGROUND
210
214
sql/main BACKGROUND
211
- sql/signal_handler BACKGROUND
212
215
sql/thread_timer_notifier BACKGROUND
213
216
CALL sys.ps_setup_show_enabled(TRUE, TRUE);
214
217
performance_schema_enabled
@@ -247,7 +250,6 @@ innodb/page_cleaner_thread BACKGROUND
247
250
root@localhost FOREGROUND
248
251
sql/compress_gtid_table FOREGROUND
249
252
sql/main BACKGROUND
250
- sql/signal_handler BACKGROUND
251
253
sql/thread_timer_notifier BACKGROUND
252
254
enabled_instruments timed
253
255
idle YES
Original file line number Diff line number Diff line change @@ -20,8 +20,12 @@ UPDATE performance_schema.setup_consumers
20
20
SET ENABLED = 'NO'
21
21
WHERE NAME LIKE '%\_history\_long';
22
22
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%';
25
29
26
30
# Show limited info (no thread or instrument info)
27
31
CALL sys.ps_setup_show_enabled(FALSE, FALSE);
You can’t perform that action at this time.
0 commit comments