From: Tom Lane Date: Sat, 8 Apr 2000 23:32:34 +0000 (+0000) Subject: Add explanation about 'Unrecognized variable client_encoding' X-Git-Tag: REL7_0~180 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5db0ef84e6642bd9daedc4023107edbbb4c6aecf;p=postgresql Add explanation about 'Unrecognized variable client_encoding' message at startup. --- diff --git a/doc/src/sgml/trouble.sgml b/doc/src/sgml/trouble.sgml index 49a8406c61..3e3d962241 100644 --- a/doc/src/sgml/trouble.sgml +++ b/doc/src/sgml/trouble.sgml @@ -1,5 +1,5 @@ @@ -137,6 +137,18 @@ FATAL 1: Database testdb does not exist in pg_database Postgres username, which may or may not be the right thing. + + +NOTICE: Unrecognized variable client_encoding + + This isn't an error; in fact, it's quite harmless. You'll see this + message at startup if you use a client compiled with MULTIBYTE support + to connect to a server compiled without it. (The client is trying + to tell the server what character set encoding it wants, but the + server has no idea what it's talking about.) If the message bothers + you, use a client compiled with the same options as the server. + +