/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')
देता है
उसके बाद
मेरी यूटीएफ पासवर्ड समस्या को ठीक किया। इसलिए मैंने पीआर बनाया - शायद जल्द ही यह अब कोई सवाल नहीं होगा।
https://github.com/brianc/node-postgres/pull/1178ए>