From: | "Thomas H(dot)" <me(at)alternize(dot)com> |
---|---|
To: | Euler Taveira de Oliveira <euler(at)timbira(dot)com> |
Cc: | pgsql-bugs(at)postgresql(dot)org |
Subject: | Re: BUG #4186: set lc_messages does not work |
Date: | 2008-05-23 02:31:27 |
Message-ID: | 48362C7F.3050605@alternize.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs pgsql-hackers |
euler taveira de olivieira wrote:
>> the patch discussed here [1] that supposedly made the win32 msvc
>> builds use
>> lc_locale properly has flaws.
>>
> I think you misunderstood the feature [1] added recently. This new
actually no. the problem is as i intended to point out with the system
generated error messages. their language is supposedly controlled by
LC_MESSAGES (as was the time/date output, according to the first
february patch submission).
please observe the (previously already submitted) test queries. i've
removed the date/time testqueries to no further distract from the
problem. the bogus query "select x;" always results in a german error
messages no matter what LC_MESSAGES is set:
endor=# set lc_messages to 'sv_SE';
SET
endor=# select x;
FEHLER: Spalte »x« existiert nicht
ZEILE 1: select x;
^
endor=#
endor=# set lc_messages to 'de_DE';
SET
endor=# select x;
FEHLER: Spalte »x« existiert nicht
ZEILE 1: select x;
^
endor=#
endor=# set lc_messages to 'English_United_States';
SET
endor=# select x;
FEHLER: Spalte »x« existiert nicht
ZEILE 1: select x;
^
endor=#
endor=# set lc_messages to 'fr';
SET
endor=# select x;
FEHLER: Spalte »x« existiert nicht
ZEILE 1: select x;
setting LC_MESSAGES in postgres.conf doesn't change anything either. and
the comment there says explicitly that LC_MESSAGES is used for system
errors:
lc_messages = 'English_United_States' # locale for system error message
# strings
nevertheless, everything is outputted in german now, errors as well as
logs. which seems to hint at 8.3.1 ignoring the LC_MESSAGES and always
using the os' locale.
regards,
thomas
From | Date | Subject | |
---|---|---|---|
Next Message | Euler Taveira de Oliveira | 2008-05-23 04:57:33 | Re: BUG #4186: set lc_messages does not work |
Previous Message | TIAN Justin | 2008-05-23 02:22:38 | Re: error message "psql: expected authentication request from server, but received " when using psql to connect remote database |
From | Date | Subject | |
---|---|---|---|
Next Message | Vishal Mailinglist | 2008-05-23 03:23:23 | Re: Error while executing pg_dump "invalid memory alloc request size 4294967293" |
Previous Message | Euler Taveira de Oliveira | 2008-05-22 22:37:45 | Re: BUG #4186: set lc_messages does not work |