aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-08-14 02:49:42 +0000
committerBruce Momjian <bruce@momjian.us>2002-08-14 02:49:42 +0000
commit9f19f3c836ba22d953ab4df5dd96075020d63022 (patch)
tree4d896200819508fd43505726534d3361f557a2c2
parent969e0246ede898741dfd2495daa6f72a23aa3e18 (diff)
downloadpostgresql-9f19f3c836ba22d953ab4df5dd96075020d63022.tar.gz
postgresql-9f19f3c836ba22d953ab4df5dd96075020d63022.zip
Added:
< > o Improve PL/PgSQL exception handling > o Allow PL/PgSQL parameters to be specified by name and type during > definition > o Allow PL/PgSQL function parameters to be passed by name, > get_employee_salary(emp_id => 12345, tax_year => 2001) > o Add PL/PgSQL packages > o Allow array declarations and other data types in PL/PgSQl DECLARE > o Add PL/PgSQL PROCEDURES that can return multiple values
-rw-r--r--doc/TODO11
1 files changed, 9 insertions, 2 deletions
diff --git a/doc/TODO b/doc/TODO
index da568497e14..b716bcc291d 100644
--- a/doc/TODO
+++ b/doc/TODO
@@ -1,6 +1,6 @@
TODO list for PostgreSQL
========================
-Last updated: Tue Aug 13 22:24:31 EDT 2002
+Last updated: Tue Aug 13 22:49:31 EDT 2002
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
@@ -253,7 +253,14 @@ Commands
o Fix problems with complex temporary table creation/destruction
without using PL/PgSQL EXECUTE, needs cache prevention/invalidation
o Fix PL/pgSQL RENAME to work on variables other than OLD/NEW
-
+ o Improve PL/PgSQL exception handling
+ o Allow PL/PgSQL parameters to be specified by name and type during
+ definition
+ o Allow PL/PgSQL function parameters to be passed by name,
+ get_employee_salary(emp_id => 12345, tax_year => 2001)
+ o Add PL/PgSQL packages
+ o Allow array declarations and other data types in PL/PgSQl DECLARE
+ o Add PL/PgSQL PROCEDURES that can return multiple values
Clients
=======