BUG #14527: Calandar Week

Started by Nonameabout 9 years ago2 messagesbugs
Jump to latest
#1Noname
jcantin@strategicfuse.com

The following bug has been logged on the website:

Bug reference: 14527
Logged by: John Cantin
Email address: jcantin@strategicfuse.com
PostgreSQL version: 9.3.6
Operating system: centos 7
Description:

Postgres seems to define calendar week differently depending on the function
called.

The extract function shows '2017-1-1' as week 52 but the to_char function
shows it as 1

select extract('week' from '2017-1-1'::date) as week

select to_char('2017-1-1'::date,'ww')

--
Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-bugs

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Noname (#1)
Re: BUG #14527: Calandar Week

jcantin@strategicfuse.com writes:

Postgres seems to define calendar week differently depending on the function
called.

Yup, there's the "ISO 8601" way of counting weeks and the not-so-ISO way.
Read the manual carefully.

(The great thing about standards is there are so many to choose from.)

regards, tom lane

--
Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-bugs