[COMMITTERS] pgsql: Fix roundoff problems in float8_timestamptz() andmake_interval(

Поиск
Список
Период
Сортировка
От Tom Lane
Тема [COMMITTERS] pgsql: Fix roundoff problems in float8_timestamptz() andmake_interval(
Дата
Msg-id E1cbbIh-0006uA-Sm@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix roundoff problems in float8_timestamptz() and make_interval().

When converting a float value to integer microseconds, we should be careful
to round the value to the nearest integer, typically with rint(); simply
assigning to an int64 variable will truncate, causing apparently off-by-one
values in cases that should work.  Most places in the datetime code got
this right, but not these two.

float8_timestamptz() is new as of commit e511d878f (9.6).  Previous
versions effectively depended on interval_mul() to do roundoff correctly,
which it does, so this fixes an accuracy regression in 9.6.

The problem in make_interval() dates to its introduction in 9.4.  Aside
from being careful to round not truncate, let's incorporate the hours and
minutes inputs into the result with exact integer arithmetic, rather than
risk introducing roundoff error where there need not have been any.

float8_timestamptz() problem reported by Erik Nordström, though this is
not his proposed patch.  make_interval() problem found by me.

Discussion: https://postgr.es/m/CAHuQZDS76jTYk3LydPbKpNfw9KbACmD=49dC4BrzHcfPv6yA1A@mail.gmail.com

Branch
------
REL9_6_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/404756fe89f62735f6075abb594b54be9c262b27

Modified Files
--------------
src/backend/utils/adt/timestamp.c | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Robert Haas
Дата:
Сообщение: [COMMITTERS] pgsql: Add WAL consistency checking facility.
Следующее
От: Andres Freund
Дата:
Сообщение: [COMMITTERS] pgsql: Add explicit ORDER BY to a few tests that exercise hash-joincod