How to get localized to_char(DATE) output - Mailing list pgsql-sql

From Thomas Kellerer
Subject How to get localized to_char(DATE) output
Date
Msg-id hrsr9s$6n7$1@dough.gmane.org
Whole thread Raw
Responses Re: How to get localized to_char(DATE) output  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-sql
Hi,

I'm trying to get the output of the to_char(date, text) method in German but I can't get it to work:

My understanding is, that I need to set lc_time for the session in order to change the language used by to_char(), but
thisdoes not seem to work for me:
 

postgres=> select version();                           version
------------------------------------------------------------- PostgreSQL 8.4.3, compiled by Visual C++ build 1400,
32-bit
(1 Zeile)

postgres=> select to_char(current_date, 'Mon'); to_char
--------- May
(1 Zeile)

postgres=> set lc_time = 'German';
SET
postgres=> select to_char(current_date, 'Mon'); to_char
--------- May
(1 Zeile)

postgres=>

Postgres' messages are in German, but not the output of to_char()

After changing lc_time to 'German' I would have expected 'Mai' instead of 'May'

What am I mising?

Regards
Thomas



pgsql-sql by date:

Previous
From: "David Weilers"
Date:
Subject: Foreign key constraint referencing a parent table
Next
From: Tom Lane
Date:
Subject: Re: How to get localized to_char(DATE) output