mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
1c6394e503
keywords that a statement could start from can only be in the 'keyword' list, never in the 'keyword_sp'
7 lines
247 B
Text
7 lines
247 B
Text
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;
|