Current Path : /home/usr.opt/mysql57/mysql-test/suite/sysschema/t/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //home/usr.opt/mysql57/mysql-test/suite/sysschema/t/pr_ps_setup_show_disabled.test |
-- source include/not_embedded.inc # Add to users to the setup_actors table: one enabled, and one disabled INSERT INTO performance_schema.setup_actors VALUES ('localhost', 'foo', '%', 'YES', 'YES'), ('localhost', 'bar', '%', 'NO', 'NO'); # Disable a few instruments UPDATE performance_schema.setup_instruments SET ENABLED = 'NO' WHERE NAME LIKE 'stage/innodb/%' OR NAME LIKE 'statement/com/%' OR NAME = 'idle'; # Disable the history_long consumers: UPDATE performance_schema.setup_consumers SET ENABLED = 'NO' WHERE NAME LIKE '%\_history\_long'; # Disable some of the background threads: UPDATE performance_schema.threads SET INSTRUMENTED = 'NO' WHERE NAME LIKE 'thread/innodb/srv\_%'; # Show limited info (no thread or instrument info) CALL sys.ps_setup_show_disabled(FALSE, FALSE); # Should show instrument data, but not thread info CALL sys.ps_setup_show_disabled(TRUE, FALSE); # Should show thread info, but no instrument data CALL sys.ps_setup_show_disabled(FALSE, TRUE); # Should show all info CALL sys.ps_setup_show_disabled(TRUE, TRUE); # Clean up -- source ../include/ps_setup_reset_to_default_cleanup.inc