pgsql: Fix time_part and timetz_part (ie, EXTRACT() for those datatypes)

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix time_part and timetz_part (ie, EXTRACT() for those datatypes)
Date: 2009-07-29 22:19:18
Message-ID: 20090729221918.2BA4B75331E@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Fix time_part and timetz_part (ie, EXTRACT() for those datatypes) to
include a fractional part in the output for MILLISECOND and SECOND cases,
rather than truncating the source value. This is what the float-timestamp
code has always done, and it was clearly the code author's intent to do
the same for integer timestamps, but he forgot about integer division in C.
The other datatypes supported by EXTRACT() already do this correctly.

Backpatch to 8.4, so that the default (integer) behavior of that branch will
match the default (float) behavior of older branches. Arguably we should
patch further back, but it's possible that applications are expecting the
broken behavior in older branches. 8.4 is new enough that expectations
shouldn't be too settled.

Per report from Greg Stark.

Modified Files:
--------------
pgsql/src/backend/utils/adt:
date.c (r1.146 -> r1.147)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/date.c?r1=1.146&r2=1.147)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2009-07-29 22:19:23 pgsql: Fix time_part and timetz_part (ie, EXTRACT() for those datatypes)
Previous Message User Decibel 2009-07-29 21:47:39 deny-updates - trunk: Switch to using temp table in deny test to make it