Fix:
authorBruce Momjian
Fri, 16 Jun 2006 04:04:52 +0000 (04:04 +0000)
committerBruce Momjian
Fri, 16 Jun 2006 04:04:52 +0000 (04:04 +0000)
<    get_employee_salary(emp_id AS 12345, tax_year AS 2001)
>    get_employee_salary(12345 AS emp_id, 2001 AS tax_year)

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

index fb4c96f56d17a7480b488541a8fe118d6d61d8ce..a281e0e5a7a44faefed096dae34df2b811674f66 100644 (file)
--- a/doc/TODO
+++ b/doc/TODO
@@ -2,7 +2,7 @@
 PostgreSQL TODO List
 ====================
 Current maintainer:    Bruce Momjian ([email protected])
-Last updated:      Thu Jun 15 13:41:45 EDT 2006
+Last updated:      Fri Jun 16 00:04:49 EDT 2006
 
 The most recent version of this document can be viewed at
 http://www.postgresql.org/docs/faqs.TODO.html.
@@ -671,7 +671,7 @@ SQL Commands
    o PL/pgSQL
        o Fix RENAME to work on variables other than OLD/NEW
        o Allow function parameters to be passed by name,
-         get_employee_salary(emp_id AS 12345, tax_year AS 2001)
+         get_employee_salary(12345 AS emp_id, 2001 AS tax_year)
        o Add Oracle-style packages
        o Allow handling of %TYPE arrays, e.g. tab.col%TYPE[]
        o Allow listing of record column names, and access to
index 7a0aa28d8a91c46fd324a3d729ac4fe799342465..f30b940c3a2fdc8d7e3d401ac6b23b1916940939 100644 (file)
@@ -8,7 +8,7 @@
 
 

PostgreSQL TODO List

 

Current maintainer:     Bruce Momjian ([email protected])

-Last updated:           Thu Jun 15 13:41:45 EDT 2006
+Last updated:           Fri Jun 16 00:04:49 EDT 2006
 

 

The most recent version of this document can be viewed at

 http://www.postgresql.org/docs/faqs.TODO.html.
@@ -608,7 +608,7 @@ first.
     
           
  • Fix RENAME to work on variables other than OLD/NEW
  •        
  • Allow function parameters to be passed by name,
  • -                  get_employee_salary(emp_id AS 12345, tax_year AS 2001)
    +                  get_employee_salary(12345 AS emp_id, 2001 AS tax_year)
           
  • Add Oracle-style packages
  •        
  • Allow handling of %TYPE arrays, e.g. tab.col%TYPE[]
  •        
  • Allow listing of record column names, and access to