Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 3a7d66b

Browse files
committed
Add:
> o Have timestamp subtraction not call justify_hours()? > > http://archives.postgresql.org/pgsql-sql/2006-10/msg00059.php > < o Add overflow checking to timestamp and interval arithmetic > o Add overflow checking to timestamp and interval arithmetic
1 parent f16f89a commit 3a7d66b

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

doc/TODO

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
PostgreSQL TODO List
33
====================
44
Current maintainer: Bruce Momjian (bruce@momjian.us)
5-
Last updated: Mon Apr 2 17:27:56 EDT 2007
5+
Last updated: Mon Apr 2 18:46:07 EDT 2007
66

77
The most recent version of this document can be viewed at
88
http://www.postgresql.org/docs/faqs.TODO.html.
@@ -239,6 +239,10 @@ Data Types
239239
o Fix SELECT '0.01 years'::interval, '0.01 months'::interval
240240
o Add a GUC variable to allow output of interval values in ISO8601
241241
format
242+
o Have timestamp subtraction not call justify_hours()?
243+
244+
http://archives.postgresql.org/pgsql-sql/2006-10/msg00059.php
245+
242246
o Improve timestamptz subtraction to be DST-aware
243247

244248
Currently subtracting one date from another that crosses a
@@ -249,7 +253,7 @@ Data Types
249253
if daylight savings adjustments are involved.
250254

251255
o Fix interval display to support values exceeding 2^31 hours
252-
o Add overflow checking to timestamp and interval arithmetic
256+
o Add overflow checking to timestamp and interval arithmetic
253257
o Extend timezone code to allow 64-bit values so we can
254258
represent years beyond 2038
255259

doc/src/FAQ/TODO.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF">
99
<h1><a name="section_1">PostgreSQL TODO List</a></h1>
1010
<p>Current maintainer: Bruce Momjian (<a href="mailto:bruce@momjian.us">bruce@momjian.us</a>)<br/>
11-
Last updated: Mon Apr 2 17:27:56 EDT 2007
11+
Last updated: Mon Apr 2 18:46:07 EDT 2007
1212
</p>
1313
<p>The most recent version of this document can be viewed at<br/>
1414
<a href="http://www.postgresql.org/docs/faqs.TODO.html">http://www.postgresql.org/docs/faqs.TODO.html</a>.
@@ -214,6 +214,9 @@ <h1><a name="section_4">Data Types</a></h1>
214214
</li><li>Fix SELECT '0.01 years'::interval, '0.01 months'::interval
215215
</li><li>Add a GUC variable to allow output of interval values in ISO8601
216216
format
217+
</li><li>Have timestamp subtraction not call justify_hours()?
218+
<p> <a href="http://archives.postgresql.org/pgsql-sql/2006-10/msg00059.php">http://archives.postgresql.org/pgsql-sql/2006-10/msg00059.php</a>
219+
</p>
217220
</li><li>Improve timestamptz subtraction to be DST-aware
218221
<p> Currently subtracting one date from another that crosses a
219222
daylight savings time adjustment can return '1 day 1 hour', but
@@ -223,7 +226,7 @@ <h1><a name="section_4">Data Types</a></h1>
223226
if daylight savings adjustments are involved.
224227
</p>
225228
</li><li>Fix interval display to support values exceeding 2^31 hours
226-
</li><li>Add overflow checking to timestamp and interval arithmetic
229+
</li><li>Add overflow checking to timestamp and interval arithmetic
227230
</li><li>Extend timezone code to allow 64-bit values so we can
228231
represent years beyond 2038
229232
<p> <a href="http://archives.postgresql.org/pgsql-hackers/2006-09/msg01363.php">http://archives.postgresql.org/pgsql-hackers/2006-09/msg01363.php</a>

0 commit comments

Comments
 (0)