I have loged in postresql as default postgres
user:
psql -U postres
and following the official documentation: https://www.postgresql.org/docs/12/app-createuser.html I have type this:
create user -d -e --role=myrole -r -s myuser;
and nothing happens. Postresql ignores the command.
\du
does not return myuser
in user list.
It ignores the command when added any option, only this works:
create user myuser;