initdb stores default client_encoding from environment-variable

Lists: pgsql-bugs
From: "Wolfgang(dot)Koenig" <Wolfgang(dot)Koenig(at)versatel(dot)de>
To: <pgsql-bugs(at)postgresql(dot)org>
Cc: "Olaf(dot)Waldheim" <Olaf(dot)Waldheim(at)versatel(dot)de>
Subject: initdb stores default client_encoding from environment-variable
Date: 2010-04-09 08:49:32
Message-ID: 227142482560EF458FF1F7E784E26AB8022B4D0E@FLBVEXCH01.versatel.local
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

initdb stores default client_encoding from environment-variable

Postgres Version: 8.4.3 and 8.3.6
Operating System: Sun Solaris 5.10 and SuseEnterprise 9

When a database is initialized with the initdb-command, the default
client_enconding, which will be stored in the DB, depends on the value
of the environment-variable PGCLIENTENCODING at the time of running
initdb. This behaviour is not documented.
Furthermore I didn't find a command to change this
default client_encoding in the database later.
The default client_encoding does not depend on the database encoding!

This is a small shell-script to show this behaviour.

#!/bin/bash -x
#
PGHOST="localhost"
PGPORT=7654
PGDATABASE=postgres
PGUSER=postgres
export PGHOST PGPORT PGDATABASE PGUSER
export LD_LIBRARY_PATH=/usr/local/pgsql/lib

binpath=/usr/local/pgsql/bin
dir=/data/DB-2

$binpath/pg_ctl stop -D $dir/pg-base -m fast -o '-p 7654'
#
# remove Database
#
rm -r $dir/pg-base 2> /dev/null
sleep 1
mkdir $dir/pg-base 2> /dev/null

PGCLIENTENCODING="WIN1250"
export PGCLIENTENCODING

$binpath/initdb --encoding=UTF8 -D $dir/pg-base

$binpath/pg_ctl start -D $dir/pg-base -l $dir/pg-server.log -o '-p 7654'

sleep 5

unset PGCLIENTENCODING # IMPORTANT !!

$binpath/psql -c "select version();"
$binpath/psql -c "show client_encoding;"


From: Robert Haas <robertmhaas(at)gmail(dot)com>
To: "Wolfgang(dot)Koenig" <Wolfgang(dot)Koenig(at)versatel(dot)de>
Cc: pgsql-bugs(at)postgresql(dot)org, "Olaf(dot)Waldheim" <Olaf(dot)Waldheim(at)versatel(dot)de>
Subject: Re: initdb stores default client_encoding from environment-variable
Date: 2010-04-12 13:23:56
Message-ID: i2h603c8f071004120623qa9a01be3y8f8e23671bd02d6d@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

On Fri, Apr 9, 2010 at 4:49 AM, Wolfgang.Koenig
<Wolfgang(dot)Koenig(at)versatel(dot)de> wrote:
> When a database is initialized with the initdb-command, the default
> client_enconding, which will be stored in the DB, depends on the value
> of the environment-variable PGCLIENTENCODING at the time of running
> initdb. This behaviour is not documented.

Hmm... yes, that does appear to be an oversight in the documentation.

...Robert


From: Craig Ringer <craig(at)postnewspapers(dot)com(dot)au>
To: PostgreSQL Bugs <pgsql-bugs(at)postgresql(dot)org>
Subject: Re: initdb stores default client_encoding from environment-variable
Date: 2010-04-13 01:03:57
Message-ID: 4BC3C2FD.6020201@postnewspapers.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

[re-posting as I mistakenly sent this only to the OP]

On 09/04/10 16:49, Wolfgang.Koenig wrote:
> initdb stores default client_encoding from environment-variable
>
>
> Postgres Version: 8.4.3 and 8.3.6
> Operating System: Sun Solaris 5.10 and SuseEnterprise 9
>
> When a database is initialized with the initdb-command, the default
> client_enconding, which will be stored in the DB, depends on the value
> of the environment-variable PGCLIENTENCODING at the time of running
> initdb. This behaviour is not documented.
> Furthermore I didn't find a command to change this
> default client_encoding in the database later.
> The default client_encoding does not depend on the database encoding!

I cannot reproduce this issue based on the test script you've provided.
However, I was testing on Ubuntu 9.10, not a vanilla 8.4, so this
can't be taken as definitive.

$ env | grep PG
$ PGPORT=7654 psql -U postgres postgres -c 'show client_encoding;'
client_encoding
-----------------
UTF8
(1 row)

$ PGPORT=7654 psql -U postgres postgres
(snip blah blah)
postgres=# show port ;
port
------
7654
(1 row)
postgres=# \l
List of databases
Name | Owner | Encoding | Collation | Ctype | Access
privileges
-----------+----------+----------+-------------+-------------+-----------------------
postgres | postgres | UTF8 | en_AU.utf-8 | en_AU.utf-8 |
template0 | postgres | UTF8 | en_AU.utf-8 | en_AU.utf-8 | =c/postgres
:
postgres=CTc/postgres
template1 | postgres | UTF8 | en_AU.utf-8 | en_AU.utf-8 | =c/postgres
:
postgres=CTc/postgres
(3 rows)

$ PGCLIENTENCODING="WIN1250" PGPORT=7654 psql -U postgres postgres -c
'show client_encoding;'
client_encoding
-----------------
WIN1250
(1 row)

--
Craig Ringer


From: Bruce Momjian <bruce(at)momjian(dot)us>
To: Craig Ringer <craig(at)postnewspapers(dot)com(dot)au>
Cc: PostgreSQL Bugs <pgsql-bugs(at)postgresql(dot)org>
Subject: Re: initdb stores default client_encoding from environment-variable
Date: 2010-04-15 00:55:08
Message-ID: 201004150055.o3F0t8U17108@momjian.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs


Perhaps this is some Solaris-specific change he is seeing.

---------------------------------------------------------------------------

Craig Ringer wrote:
> [re-posting as I mistakenly sent this only to the OP]
>
> On 09/04/10 16:49, Wolfgang.Koenig wrote:
> > initdb stores default client_encoding from environment-variable
> >
> >
> > Postgres Version: 8.4.3 and 8.3.6
> > Operating System: Sun Solaris 5.10 and SuseEnterprise 9
> >
> > When a database is initialized with the initdb-command, the default
> > client_enconding, which will be stored in the DB, depends on the value
> > of the environment-variable PGCLIENTENCODING at the time of running
> > initdb. This behaviour is not documented.
> > Furthermore I didn't find a command to change this
> > default client_encoding in the database later.
> > The default client_encoding does not depend on the database encoding!
>
>
> I cannot reproduce this issue based on the test script you've provided.
> However, I was testing on Ubuntu 9.10, not a vanilla 8.4, so this
> can't be taken as definitive.
>
> $ env | grep PG
> $ PGPORT=7654 psql -U postgres postgres -c 'show client_encoding;'
> client_encoding
> -----------------
> UTF8
> (1 row)
>
> $ PGPORT=7654 psql -U postgres postgres
> (snip blah blah)
> postgres=# show port ;
> port
> ------
> 7654
> (1 row)
> postgres=# \l
> List of databases
> Name | Owner | Encoding | Collation | Ctype | Access
> privileges
> -----------+----------+----------+-------------+-------------+-----------------------
> postgres | postgres | UTF8 | en_AU.utf-8 | en_AU.utf-8 |
> template0 | postgres | UTF8 | en_AU.utf-8 | en_AU.utf-8 | =c/postgres
> :
> postgres=CTc/postgres
> template1 | postgres | UTF8 | en_AU.utf-8 | en_AU.utf-8 | =c/postgres
> :
> postgres=CTc/postgres
> (3 rows)
>
>
>
> $ PGCLIENTENCODING="WIN1250" PGPORT=7654 psql -U postgres postgres -c
> 'show client_encoding;'
> client_encoding
> -----------------
> WIN1250
> (1 row)
>
>
> --
> Craig Ringer
>
> --
> Sent via pgsql-bugs mailing list (pgsql-bugs(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-bugs

--
Bruce Momjian <bruce(at)momjian(dot)us> http://momjian.us
EnterpriseDB http://enterprisedb.com


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Wolfgang(dot)Koenig" <Wolfgang(dot)Koenig(at)versatel(dot)de>
Cc: pgsql-bugs(at)postgresql(dot)org, "Olaf(dot)Waldheim" <Olaf(dot)Waldheim(at)versatel(dot)de>
Subject: Re: initdb stores default client_encoding from environment-variable
Date: 2010-04-15 02:03:32
Message-ID: 20509.1271297012@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

"Wolfgang.Koenig" <Wolfgang(dot)Koenig(at)versatel(dot)de> writes:
> initdb stores default client_encoding from environment-variable
> Postgres Version: 8.4.3 and 8.3.6
> Operating System: Sun Solaris 5.10 and SuseEnterprise 9

> When a database is initialized with the initdb-command, the default
> client_enconding, which will be stored in the DB, depends on the value
> of the environment-variable PGCLIENTENCODING at the time of running
> initdb.

Hmm, it doesn't do that for me. initdb actually takes some pains to
ensure that PGCLIENTENCODING doesn't affect it:

/* Also ensure backend isn't confused by this environment var: */
unsetenv("PGCLIENTENCODING");

I suppose that unsetenv isn't working properly on your platform for some
reason. Does configure think that it's present? If not, we're going to
fall back to the implementation in src/port/unsetenv.c, which might not
work for you.

regards, tom lane