1
0
mirror of https://github.com/MariaDB/server.git synced 2025-06-23 19:21:55 +03:00

Add Create_routine_priv, Alter_routine_priv, and Execute_priv privileges

to the 'host' privilege table. (Bug #8166)
This commit is contained in:
jimw@mysql.com
2005-02-07 18:40:14 -08:00
parent 1f21b05c53
commit 21caf15bca
3 changed files with 10 additions and 0 deletions

View File

@ -105,6 +105,9 @@ then
c_h="$c_h Lock_tables_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
c_h="$c_h Create_view_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
c_h="$c_h Show_view_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
c_h="$c_h Create_routine_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
c_h="$c_h Alter_routine_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
c_h="$c_h Execute_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
c_h="$c_h PRIMARY KEY Host (Host,Db)"
c_h="$c_h ) engine=MyISAM"
c_h="$c_h CHARACTER SET utf8 COLLATE utf8_bin"