I would like to set a password for the postgres user on my local database on windows.
Currently I can login to postgres using "psql -U postgres" without the need for a password
My pg_hba file is as follows
# TYPE DATABASE USER ADDRESS METHOD
# IPv4 local connections:
host all all 127.0.0.1/32 md5
# IPv6 local connections:
host all all ::1/128 md5
# Allow replication connections from localhost, by a user with the
# replication privilege.
#host replication postgres 127.0.0.1/32 md5
#host replication postgres ::1/128 md5


