Saya telah mereproduksi masalah di sistem saya,
postgres=# alter user my-sys with password 'pass11';
ERROR: syntax error at or near "-"
LINE 1: alter user my-sys with password 'pass11';
^
Inilah masalahnya,
psql meminta masukan dan Anda telah memberikan lagi kueri perubahan, lihat postgres-#
Itu sebabnya itu memberikan kesalahan pada alter
postgres-# alter user "my-sys" with password 'pass11';
ERROR: syntax error at or near "alter"
LINE 2: alter user "my-sys" with password 'pass11';
^
Solusinya sesederhana kesalahannya,
postgres=# alter user "my-sys" with password 'pass11';
ALTER ROLE