1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-31 22:22:30 +03:00

Implemented syntax recognition for DROP ROLE

This commit is contained in:
Vicențiu Ciorbaru
2013-10-18 04:36:25 -07:00
committed by Sergei Golubchik
parent fac8c9ef43
commit ec92a4e0ff
4 changed files with 12 additions and 1 deletions

View File

@@ -3761,6 +3761,12 @@ end_with_restore_list:
my_ok(thd);
break;
}
case SQLCOM_DROP_ROLE:
{
/* TODO */
my_ok(thd);
break;
}
case SQLCOM_REVOKE_ALL:
{
if (check_access(thd, UPDATE_ACL, "mysql", NULL, NULL, 1, 1) &&