Server IP : 104.21.38.3 / Your IP : 172.68.164.105 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/mysql-test/suite/perfschema/r/ |
Upload File : |
# # Verify that the configuration file defaults were processed correctly # SELECT * FROM performance_schema.setup_instruments WHERE name IN ( 'wait/synch/mutex/sql/LOCK_user_conn', 'wait/synch/mutex/sql/LOCK_uuid_generator', 'wait/synch/mutex/sql/LOCK_transaction_cache', 'stage/sql/creating table') AND enabled = 'yes' AND timed = 'no' ORDER BY name; NAME ENABLED TIMED stage/sql/creating table YES NO wait/synch/mutex/sql/LOCK_transaction_cache YES NO wait/synch/mutex/sql/LOCK_user_conn YES NO wait/synch/mutex/sql/LOCK_uuid_generator YES NO SELECT * FROM performance_schema.setup_instruments WHERE name = 'wait/synch/mutex/sql/LOCK_thd_list' AND enabled = 'no' AND timed = 'no'; NAME ENABLED TIMED SELECT * FROM performance_schema.setup_instruments WHERE name IN ( 'wait/synch/mutex/sql/LOG_INFO::lock', 'wait/synch/mutex/sql/THD::LOCK_thd_list') AND enabled = 'yes' AND timed = 'yes' ORDER BY name; NAME ENABLED TIMED SELECT * FROM performance_schema.setup_instruments WHERE name = 'wait/synch/mutex/sql/hash_filo::lock' AND enabled = 'no' AND timed = 'no' ORDER BY name; NAME ENABLED TIMED wait/synch/mutex/sql/hash_filo::lock NO NO # # Verify that the memory instruments are never timed # SELECT * FROM performance_schema.setup_instruments WHERE name like 'memory/%' AND timed = 'YES'; NAME ENABLED TIMED # # Verify that the memory/performance_schema instruments are never disabled # SELECT * FROM performance_schema.setup_instruments WHERE name like 'memory/performance_schema/%' AND enabled = 'NO'; NAME ENABLED TIMED # # Verify that the instrument startup settings are not not visible. # SHOW VARIABLES LIKE "%/wait/synch/mutex%"; Variable_name Value # # Verify command line options are processed correctly # # # Verify that wait/io/table/sql/handler is enabled and timed # SELECT * FROM performance_schema.setup_instruments WHERE name like "%wait/io/table/sql/handler%"; NAME ENABLED TIMED wait/io/table/sql/handler YES YES # # Stop server # Restart server with wait/io/table/sql/handler disabled # Enable reconnect # Wait until connected again # Disable reconnect # # Verify that wait/io/table is disabled # SELECT * FROM performance_schema.setup_instruments WHERE name like "%wait/io/table/sql/handler%"; NAME ENABLED TIMED wait/io/table/sql/handler NO NO