I'm following the PostgreSQL docs at https://www.postgresql.org/docs/11/sql-createuser.html to create a user. psql hates me.
# CREATE USER blah WITH ENCRYPTED PASSWORD 'md56f1ed002ab5595859014ebf0951522d9';
NOTICE: empty string is not a valid password, clearing password
CREATE ROLE
I generated the MD5 like...
$ md5 -s 'blah'
MD5 ("blah") = 6f1ed002ab5595859014ebf0951522d9
How do I get the NOTICE: empty string is not a valid password, clearing password
to go away and have postgres respect my desire to present it with an encrypted password?