mirror of
https://github.com/MariaDB/server.git
synced 2025-09-02 09:41:40 +03:00
Bug#32710: SHOW INNODB STATUS requires SUPER
Changed "SHOW ENGINE ... STATUS" and "SHOW ENGINE ... MUTEX" to require the PROCESS privilege, instead of SUPER. Fixed by Damien Katz
This commit is contained in:
@@ -2271,14 +2271,14 @@ mysql_execute_command(THD *thd)
|
||||
#endif /* HAVE_REPLICATION */
|
||||
case SQLCOM_SHOW_ENGINE_STATUS:
|
||||
{
|
||||
if (check_global_access(thd, SUPER_ACL))
|
||||
if (check_global_access(thd, PROCESS_ACL))
|
||||
goto error;
|
||||
res = ha_show_status(thd, lex->create_info.db_type, HA_ENGINE_STATUS);
|
||||
break;
|
||||
}
|
||||
case SQLCOM_SHOW_ENGINE_MUTEX:
|
||||
{
|
||||
if (check_global_access(thd, SUPER_ACL))
|
||||
if (check_global_access(thd, PROCESS_ACL))
|
||||
goto error;
|
||||
res = ha_show_status(thd, lex->create_info.db_type, HA_ENGINE_MUTEX);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user