mirror of
https://github.com/MariaDB/server.git
synced 2025-05-05 16:59:35 +03:00
keywords that a statement could start from can only be in the 'keyword' list, never in the 'keyword_sp'
8 lines
247 B
Plaintext
8 lines
247 B
Plaintext
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;
|