pgsql: Fix time_part and timetz_part (ie, EXTRACT() for those datatypes) - Mailing list pgsql-committers

From tgl@postgresql.org (Tom Lane)
Subject pgsql: Fix time_part and timetz_part (ie, EXTRACT() for those datatypes)
Date
Msg-id 20090729221918.2BA4B75331E@cvs.postgresql.org
Whole thread Raw
List 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)

pgsql-committers by date:

Previous
From: decibel@pgfoundry.org (User Decibel)
Date:
Subject: deny-updates - trunk: Switch to using temp table in deny test to make it
Next
From: tgl@postgresql.org (Tom Lane)
Date:
Subject: pgsql: Fix time_part and timetz_part (ie, EXTRACT() for those datatypes)