pgsql/src/backend/utils/adt date.c

Lists: pgsql-committers
From: thomas(at)postgresql(dot)org (Thomas Lockhart)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql/src/backend/utils/adt date.c
Date: 2002-06-01 15:52:15
Message-ID: 20020601155215.C5248475A53@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-committers

CVSROOT: /cvsroot
Module name: pgsql
Changes by: thomas(at)postgresql(dot)org 02/06/01 11:52:15

Modified files:
src/backend/utils/adt: date.c

Log message:
Fix timestamp to date conversion for the case where timestamp uses a double
precision storage format. Previously applied the same math as used for the
64-bit integer storage format case, which was wrong.
Problem introduced recently when the 64-bit storage format was
implemented.