You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a warning in the psql console about character encoding that doesn't match the system encoding. Some Windows machines still use the legacy 1252 that may not support all utf-8 character encoding.
The warning from the psql console
WARNING: Console code page (850) differs from the Windows code page (1252). 8-bit characters might not work correctly. See psql reference page "Notes for Windows users"for details.
Recommended Solution
Set the Windows character encoding from 1252 to utf-8
Not Recommended Solution
Set the character encoding in psql to 1252 (This may be setting the psql to use a legacy character encoding)
Related to #76
There is a warning in the
psql
console about character encoding that doesn't match the system encoding. Some Windows machines still use the legacy1252
that may not support allutf-8
character encoding.The warning from the
psql
consoleRecommended Solution
1252
to utf-8Not Recommended Solution
1252
(This may be setting the psql to use a legacy character encoding)Some findings
client_encoding
is already in UTF8 in psql but this doesn't solve the issue (I think the system and psql encoding need to match)UTF-8
support on windows solved the issueChecking the system info with
[System.Text.Encoding]::Default
System info before the checkbox is checked
System info after the checkbox is checked (all 1252 changed to
utf-8
and its65001
number equivalent)Conversation in #80 about this
60ddd09#r1668603246
60ddd09#r1674257929
The text was updated successfully, but these errors were encountered: