I am able to log in via mysql -u myuser -p mydb -h localhost
with this:
grant all privileges on mydb.* to myuser@'%' identified by
'1234567890123456789012345678901234567890123456789012345678901234567890123456789';
But not after I do this:
grant all privileges on mydb.* to myuser@'%' identified by
'12345678901234567890123456789012345678901234567890123456789012345678901234567890';
Where is this hard limit of 79 characters for a database password coming from?