SQL Server supports a permission called VIEW DEFINITION which when granted allows a user to view the definitions of stored procedures, among other objects. What is the equivalent in MySQL? I have a stored procedure that was built with security context DEFINER='root'@'localhost' and I want to allow production support personnel to view the definition without granting them SUPER privileges.
↧