Details
-
Bug
-
Status: Confirmed (View Workflow)
-
Minor
-
Resolution: Unresolved
-
10.0(EOL), 10.1(EOL), 10.2(EOL)
-
None
Description
Hi,
When trying to add grants (GRANT SUPER ON *.*) but forgetting the *.* I get an error about invalid roles:
MariaDB [mysql]> grant super to 'user'@'host';
|
ERROR 1959 (OP000): Invalid role specification `super`.
|
This is not very descriptive. In my opinion, this would be better:
ERROR 1959 (OP000): Invalid role specification `super`. Perhaps you meant to grant a permission ON database.table or *.*?
|