Add URL for ISO date/time syntax:
authorBruce Momjian
Fri, 16 Jun 2006 16:59:30 +0000 (16:59 +0000)
committerBruce Momjian
Fri, 16 Jun 2006 16:59:30 +0000 (16:59 +0000)
>
>    http://archives.postgresql.org/pgsql-hackers/2006-01/msg00250.php
>

doc/TODO
doc/src/FAQ/TODO.html

index a281e0e5a7a44faefed096dae34df2b811674f66..785a1b816eacfe648426c2be956ef98dd422bd2f 100644 (file)
--- a/doc/TODO
+++ b/doc/TODO
@@ -2,7 +2,7 @@
 PostgreSQL TODO List
 ====================
 Current maintainer:    Bruce Momjian ([email protected])
-Last updated:      Fri Jun 16 00:04:49 EDT 2006
+Last updated:      Fri Jun 16 12:59:22 EDT 2006
 
 The most recent version of this document can be viewed at
 http://www.postgresql.org/docs/faqs.TODO.html.
@@ -255,6 +255,9 @@ Data Types
    o Fix interval display to support values exceeding 2^31 hours
    o Add overflow checking to timestamp and interval arithmetic    
    o Add ISO INTERVAL handling
+
+         http://archives.postgresql.org/pgsql-hackers/2006-01/msg00250.php
+
        o -Add support for day-time syntax, INTERVAL '1 2:03:04' DAY TO 
          SECOND
        o Support ISO INTERVAL syntax if units cannot be determined from
index f30b940c3a2fdc8d7e3d401ac6b23b1916940939..1d2236ed78f537501c70d5ed313b3b901cba8673 100644 (file)
@@ -8,7 +8,7 @@
 
 

PostgreSQL TODO List

 

Current maintainer:     Bruce Momjian ([email protected])

-Last updated:           Fri Jun 16 00:04:49 EDT 2006
+Last updated:           Fri Jun 16 12:59:22 EDT 2006
 

 

The most recent version of this document can be viewed at

 http://www.postgresql.org/docs/faqs.TODO.html.
@@ -233,10 +233,14 @@ first.
     
  • Fix interval display to support values exceeding 2^31 hours
  •      
  • Add overflow checking to timestamp and interval arithmetic    
  •      
  • Add ISO INTERVAL handling
  • -    
      -      
    • -Add support for day-time syntax, INTERVAL '1 2:03:04' DAY TO 
    • +  
      +
      +

                        http://archives.postgresql.org/pgsql-hackers/2006-01/msg00250.php

      +

      +
        +  
      • -Add support for day-time syntax, INTERVAL '1 2:03:04' DAY TO 
      •                    SECOND
        -      
      • Support ISO INTERVAL syntax if units cannot be determined from
      • +  
      • Support ISO INTERVAL syntax if units cannot be determined from
      •                    the string, and are supplied after the string
         

                          The SQL standard states that the units after the string

                           specify the units of the string, e.g. INTERVAL '2' MINUTE
        @@ -257,33 +261,33 @@ first.
                           range of units supported, e.g. PostgreSQL supports '1 year 1
                           hour', while the SQL standard does not.
         

        -      
      • Add support for year-month syntax, INTERVAL '50-6' YEAR TO MONTH
      • -      
      • Interpret INTERVAL '1 year' MONTH as CAST (INTERVAL '1 year' AS
      • +  
      • Add support for year-month syntax, INTERVAL '50-6' YEAR TO MONTH
      • +  
      • Interpret INTERVAL '1 year' MONTH as CAST (INTERVAL '1 year' AS
      •                    INTERVAL MONTH), and this should return '12 months'
        -      
      • Round or truncate values to the requested precision, e.g.
      • +  
      • Round or truncate values to the requested precision, e.g.
      •                    INTERVAL '11 months' AS YEAR should return one or zero
        -      
      • Support precision, CREATE TABLE foo (a INTERVAL MONTH(3))
      • -    
        -  
        -  
      • Arrays
      • +  
      • Support precision, CREATE TABLE foo (a INTERVAL MONTH(3))
      •    
          -    
        • -Allow NULLs in arrays
        • -    
        • Delay resolution of array expression's data type so assignment
        • +    
        • Arrays
        • +    
            +      
          • -Allow NULLs in arrays
          • +      
          • Delay resolution of array expression's data type so assignment
          •            coercion can be performed on empty array expressions
            -  
            -  
          • Binary Data
          • -  
              -    
            • Improve vacuum of large objects, like /contrib/vacuumlo?
            • -    
            • Add security checking for large objects
            • -    
            • Auto-delete large objects when referencing row is deleted
            • +    
              +    
            • Binary Data
            • +    
                +      
              • Improve vacuum of large objects, like /contrib/vacuumlo?
              • +      
              • Add security checking for large objects
              • +      
              • Auto-delete large objects when referencing row is deleted
              •  

                          /contrib/lo offers this functionality.

                 

                -    
              • Allow read/write into TOAST values like large objects
              • +      
              • Allow read/write into TOAST values like large objects
              •  

                          This requires the TOAST column to be stored EXTERNAL.

                 

                -    
              • Add API for 64-bit large object access
              • +      
              • Add API for 64-bit large object access
              •  

                          http://archives.postgresql.org/pgsql-hackers/2005-09/msg00781.php

                 

                +    
                   
                 
                 

                Functions