The mysql.proxies_priv
table contains information about proxy privileges. The table can be queried and although it is possible to directly update it, it is best to use GRANT for setting privileges.
In MariaDB 10.4 and later, this table uses the Aria storage engine.
In MariaDB 10.3 and before, this table uses the MyISAM storage engine.
The mysql.proxies_priv
table contains the following fields:
Field | Type | Null | Key | Default | Description |
---|---|---|---|---|---|
Host |
char(60) |
NO | PRI | ||
User |
char(80) |
NO | PRI | ||
Proxied_host |
char(60) |
NO | PRI | ||
Proxied_user |
char(80) |
NO | PRI | ||
With_grant |
tinyint(1) |
NO | 0 | ||
Grantor |
char(141) |
NO | MUL | ||
Timestamp |
timestamp |
NO | CURRENT_TIMESTAMP |
The Acl_proxy_users status variable, added in MariaDB 10.1.4, indicates how many rows the mysql.proxies_priv
table contains.
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/mysqlproxies_priv-table/