I'm unable to delete one of my MySQL users. When using phpMyAdmin (using GUI), I'm getting an infobox, that user has been successfully deleted (thus it seems, that pMA is unable to catch error returned by MySQL), but after refreshing page, user is still there.
Attempt to delete this user with:
DROP USER 'undeletable_user'@'localhost';
from either phpMyAdmin's SQL console or directly from command line mysql
client ends up with pretty meaningless (at least to me) message:
ERROR 1396 (HY000): Operation DROP USER failed for 'undeletable_user'@'localhost'
Meaningless, because I already know, that I'm unable to delete this user or that this operation fails. However, I'm trying to figure out, why I can't delete to or to get more information.
What can I do in this situation?