diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-03-23 05:49:22 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-03-23 05:49:22 +0000 |
commit | 9be9c1fb0c9cc82414c72e3ffbf6631ea432e29b (patch) | |
tree | 4e824fbf83eee17feaf37d109ef4a8d79518bf06 | |
parent | 3113d38bec60d599c04b8379165788972bdd69dc (diff) | |
download | postgresql-9be9c1fb0c9cc82414c72e3ffbf6631ea432e29b.tar.gz postgresql-9be9c1fb0c9cc82414c72e3ffbf6631ea432e29b.zip |
Add:
>
> * Interpret INTERVAL '1:30' MINUTE TO SECOND as '1 minute 30 seconds'
-rw-r--r-- | doc/TODO | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2,7 +2,7 @@ TODO list for PostgreSQL ======================== Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us) -Last updated: Wed Mar 23 00:42:36 EST 2005 +Last updated: Wed Mar 23 00:49:21 EST 2005 The most recent version of this document can be viewed at the PostgreSQL web site, http://www.PostgreSQL.org. @@ -188,6 +188,8 @@ Data Types Interpret INTERVAL '1 year' MONTH as CAST (INTERVAL '1 year' AS INTERVAL MONTH), and this should return '12 months' +* Interpret INTERVAL '1:30' MINUTE TO SECOND as '1 minute 30 seconds' + * ARRAYS o Allow NULLs in arrays o Allow MIN()/MAX() on arrays |