From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | pgsql-committers(at)postgresql(dot)org |
Subject: | pgsql: Make extract() do something more reasonable with infinite dateti |
Date: | 2016-01-22 03:26:27 |
Message-ID: | E1aMSMl-0007oF-8g@gemulon.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Make extract() do something more reasonable with infinite datetimes.
Historically, extract() just returned zero for any case involving an
infinite timestamp[tz] input; even cases in which the unit name was
invalid. This is not very sensible. Instead, return infinity or
-infinity as appropriate when the requested field is one that is
monotonically increasing (e.g, year, epoch), or NULL when it is not
(e.g., day, hour). Also, throw the expected errors for bad unit names.
BACKWARDS INCOMPATIBLE CHANGE
Vitaly Burovoy, reviewed by Vik Fearing
Branch
------
master
Details
-------
http://git.postgresql.org/pg/commitdiff/647d87c56ab6da70adb753c08d7cdf7ee905ea8a
Modified Files
--------------
doc/src/sgml/func.sgml | 11 ++
src/backend/utils/adt/timestamp.c | 111 +++++++++++++++--
src/test/regress/expected/date.out | 242 ++++++++++++++++++++++++++++++++++++
src/test/regress/sql/date.sql | 53 ++++++++
4 files changed, 405 insertions(+), 12 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2016-01-22 16:53:18 | pgsql: Remove new coupling between NAMEDATALEN and MAX_LEVENSHTEIN_STRL |
Previous Message | Tom Lane | 2016-01-22 02:14:32 | Re: pgsql: Improve index AMs' opclass validation procedures. |