mirror of
https://github.com/MariaDB/server.git
synced 2025-01-28 01:34:17 +01:00
15 lines
278 B
Text
15 lines
278 B
Text
|
#
|
||
|
# run acl_roles_recursive and count the number of merges
|
||
|
#
|
||
|
source include/have_debug.inc;
|
||
|
|
||
|
show status like 'debug%';
|
||
|
|
||
|
set @old_dbug=@@global.debug_dbug;
|
||
|
set global debug_dbug="+d,role_merge_stats";
|
||
|
|
||
|
source include/acl_roles_recursive.inc;
|
||
|
|
||
|
set global debug_dbug=@old_dbug;
|
||
|
|