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

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

From
thomas@postgresql.org (Thomas Lockhart)
Date:
CVSROOT:    /cvsroot
Module name:    pgsql
Changes by:    thomas@postgresql.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.