/lib/client.js
にバグが見つかりました :crypto.createHash('md5').update('утфUTF').digest('hex')
与える:
正しいmd5は次のようになります:
a=#select md5('утфutf');
md5
----------------------------------
6dbfa2a80226f7629e537268b0650898
(1 row)
したがって、crypto.createHash('md5').update('утфutf', 'utf-8').digest('hex')
与える
その後
utfパスワードの問題を修正しました。だから私はPRを作成しました-多分すぐにそれはもう問題ではなくなるでしょう。
https://github.com/brianc/node-postgres/pull/1178