Re: [HACKERS] client_encoding directive is ignored in postgresql.conf

2003-02-14 Thread Bruce Momjian
Tom Lane wrote: > Tatsuo Ishii <[EMAIL PROTECTED]> writes: > > + /* Flag to we need to initialize client encoding info */ > > + static bool need_to_init_client_encoding = -1; > > Surely that should be int, not bool. > > > ! if (!PQsendQuery(conn, "begin; select

Re: [HACKERS] client_encoding directive is ignored in postgresql.conf

2003-01-29 Thread Tom Lane
Tatsuo Ishii <[EMAIL PROTECTED]> writes: > + /* Flag to we need to initialize client encoding info */ > + static bool need_to_init_client_encoding = -1; Surely that should be int, not bool. > ! if (!PQsendQuery(conn, "begin; select >pg_client_encoding(); commi