mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
17 lines
438 B
PHP
17 lines
438 B
PHP
# ../include/processlist_set.inc
|
|
#
|
|
# SUMMARY
|
|
#
|
|
# Set the value of performance_schema_show_proceslist then
|
|
# wait for the operation to complete
|
|
#
|
|
# USAGE
|
|
#
|
|
# let $pfs_spl = on;
|
|
# --source ../include/processlist_set.inc
|
|
|
|
eval set @@global.performance_schema_show_processlist = $pfs_spl;
|
|
|
|
let $wait_condition = show variables where variable_name like '%show_processlist%' and value = '$pfs_spl';
|
|
--source include/wait_condition.inc
|
|
|