diff --git a/mysql-test/r/grant.result b/mysql-test/r/grant.result index 60053b29125..bbf82cee8ea 100644 --- a/mysql-test/r/grant.result +++ b/mysql-test/r/grant.result @@ -594,6 +594,7 @@ Index Tables To create or drop indexes Insert Tables To insert data into tables Lock tables Databases To use LOCK TABLES (together with SELECT privilege) Process Server Admin To view the plain text of currently executing queries +Proxy Server Admin To make proxy user possible References Databases,Tables To have references on tables Reload Server Admin To reload or refresh tables, logs and privileges Replication client Server Admin To ask where the slave or master servers are diff --git a/sql/sql_show.cc b/sql/sql_show.cc index 9bf24bb88f9..f965c9371f0 100644 --- a/sql/sql_show.cc +++ b/sql/sql_show.cc @@ -336,6 +336,7 @@ static struct show_privileges_st sys_privileges[]= {"Insert", "Tables", "To insert data into tables"}, {"Lock tables","Databases","To use LOCK TABLES (together with SELECT privilege)"}, {"Process", "Server Admin", "To view the plain text of currently executing queries"}, + {"Proxy", "Server Admin", "To make proxy user possible"}, {"References", "Databases,Tables", "To have references on tables"}, {"Reload", "Server Admin", "To reload or refresh tables, logs and privileges"}, {"Replication client","Server Admin","To ask where the slave or master servers are"},