Mel Roman <mel(at)melroman(dot)net> writes:
[CREATE USER isn't working]
> test=# CREATE USER mel CREATEDB
> test-# \q
You need a semicolon to terminate the SQL statement--you're quitting
psql before the statement is complete, so it does nothing (you can
tell the statement is incomplete by the change in the prompt if you
look closely).
-Doug