summaryrefslogtreecommitdiff
path: root/mysql-test/r/shutdown.result
blob: 7039afb129e68bf9d01b592380425560b4946d97 (plain)
1
2
3
4
5
6
7
create user user1@localhost;
shutdown;
ERROR 42000: Access denied; you need (at least one of) the SHUTDOWN privilege(s) for this operation
create procedure try_shutdown() shutdown;
drop procedure try_shutdown;
shutdown;
drop user user1@localhost;