A little background: A while back I replaced my "root" user with "me" but forgot to give "me" access to the "mysql" table. Tonight I ran "safe" mode with "--skip-grant-tables" and this helped me gain access again:
UPDATE mysql.user SET Grant_priv='Y', Super_priv='Y' WHERE User='me';
However, I'm wondering if this grants "me" the maximum privileges possible? I just want to make sure "me" has full access. I don't want to find out a year from now this user is lacking some awesome superpower I need during a crisis.
This in particular has me scratching my head:
mysql> grant all on *.* to me@localhost with grant option;
Query OK, 0 rows affected (0.11 sec)
Are 0 rows affected because "me" already has all privileges or am I doing something wrong?