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

Поиск
Список
Период
Сортировка
От tgl@postgresql.org (Tom Lane)
Тема pgsql: Fix time_part and timetz_part (ie, EXTRACT() for those datatypes)
Дата
Msg-id 20090729221918.2BA4B75331E@cvs.postgresql.org
обсуждение исходный текст
Список 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 по дате отправления:

Предыдущее
От: decibel@pgfoundry.org (User Decibel)
Дата:
Сообщение: deny-updates - trunk: Switch to using temp table in deny test to make it
Следующее
От: tgl@postgresql.org (Tom Lane)
Дата:
Сообщение: pgsql: Fix time_part and timetz_part (ie, EXTRACT() for those datatypes)