Commit c6ed4ead authored by Bruce Momjian's avatar Bruce Momjian

Add:

>
> 		o Allow row and record variables to be set to NULL constants,
> 		  and allow NULL tests on such variables
>
> 		  Because a row is not scalar, do not allow assignment
> 		  from NULL-valued scalars.
parent 0bc81a5b
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
PostgreSQL TODO List PostgreSQL TODO List
==================== ====================
Current maintainer: Bruce Momjian (bruce@momjian.us) Current maintainer: Bruce Momjian (bruce@momjian.us)
Last updated: Fri Feb 16 17:19:57 EST 2007 Last updated: Fri Feb 16 20:35:38 EST 2007
The most recent version of this document can be viewed at The most recent version of this document can be viewed at
http://www.postgresql.org/docs/faqs.TODO.html. http://www.postgresql.org/docs/faqs.TODO.html.
...@@ -736,6 +736,12 @@ SQL Commands ...@@ -736,6 +736,12 @@ SQL Commands
http://archives.postgresql.org/pgsql-patches/2006-02/msg00165.php http://archives.postgresql.org/pgsql-patches/2006-02/msg00165.php
o Allow row and record variables to be set to NULL constants,
and allow NULL tests on such variables
Because a row is not scalar, do not allow assignment
from NULL-valued scalars.
o Other o Other
o Add table function support to pltcl, plpython o Add table function support to pltcl, plpython
o Add support for polymorphic arguments and return types to o Add support for polymorphic arguments and return types to
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
<body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF"> <body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF">
<h1><a name="section_1">PostgreSQL TODO List</a></h1> <h1><a name="section_1">PostgreSQL TODO List</a></h1>
<p>Current maintainer: Bruce Momjian (<a href="mailto:bruce@momjian.us">bruce@momjian.us</a>)<br/> <p>Current maintainer: Bruce Momjian (<a href="mailto:bruce@momjian.us">bruce@momjian.us</a>)<br/>
Last updated: Fri Feb 16 17:19:57 EST 2007 Last updated: Fri Feb 16 20:35:38 EST 2007
</p> </p>
<p>The most recent version of this document can be viewed at<br/> <p>The most recent version of this document can be viewed at<br/>
<a href="http://www.postgresql.org/docs/faqs.TODO.html">http://www.postgresql.org/docs/faqs.TODO.html</a>. <a href="http://www.postgresql.org/docs/faqs.TODO.html">http://www.postgresql.org/docs/faqs.TODO.html</a>.
...@@ -658,6 +658,11 @@ first. There is also a developer's wiki at<br/> ...@@ -658,6 +658,11 @@ first. There is also a developer's wiki at<br/>
</li><li>Fix problems with RETURN NEXT on tables with </li><li>Fix problems with RETURN NEXT on tables with
dropped/added columns after function creation dropped/added columns after function creation
<p> <a href="http://archives.postgresql.org/pgsql-patches/2006-02/msg00165.php">http://archives.postgresql.org/pgsql-patches/2006-02/msg00165.php</a> <p> <a href="http://archives.postgresql.org/pgsql-patches/2006-02/msg00165.php">http://archives.postgresql.org/pgsql-patches/2006-02/msg00165.php</a>
</p>
</li><li>Allow row and record variables to be set to NULL constants,
and allow NULL tests on such variables
<p> Because a row is not scalar, do not allow assignment
from NULL-valued scalars.
</p> </p>
</li></ul> </li></ul>
</li><li>Other </li><li>Other
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment