Re: DateStyle bug - Mailing list pgsql-hackers

From Thomas Lockhart
Subject Re: DateStyle bug
Date
Msg-id 3C7557C8.348A4092@fourpalms.org
Whole thread Raw
In response to DateStyle bug  (Manuel Sugawara <masm@fciencias.unam.mx>)
List pgsql-hackers
> While porting an aplication from 7.0 to 7.2 I found a bug with the use
> of DateStyle variable:

No bug that I can see. Please be more specific, or the explanation might
be that you have some (understandable) confusion over output date styles
(e.g. 'Postgres', 'ISO') and style hints for both input and output (e.g.
'European', 'US').

Simply setting 'European' will only affect the order of priorities for
interpreting months and days for input parameters when the style is set
to 'ISO' (which specifies the order of fields for dates and times, so is
fixed for output). When the output style is set to 'Postgres' then
'European' also affects the order of output of months and days.
                     - Thomas

> masm@dep4$ psql test
> test=# set DateStyle to 'European' ;
> SET VARIABLE
> test=# select now()::date;
>     now
> ------------
>  2002-02-21
> (1 row)
> 
> test=# \c test
> You are now connected to database test
> test=# set DateStyle to 'Postgres' ;
> SET VARIABLE
> test=# set DateStyle to 'European' ;
> SET VARIABLE
> test=# select now()::date;
>     now
> ------------
>  21-02-2002
> (1 row)


pgsql-hackers by date:

Previous
From: Jean-Michel POURE
Date:
Subject: Re: fmgr_info: function 20071: cache lookup failed
Next
From: Ruslan A Dautkhanov
Date:
Subject: Re: date/time compatible problems in 7.2