mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
15 lines
260 B
Plaintext
15 lines
260 B
Plaintext
#
|
|
# 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 recursive.inc;
|
|
|
|
set global debug_dbug=@old_dbug;
|
|
|