Commit 4e1bdcaa authored by Bruce Momjian's avatar Bruce Momjian

Add:

< * Add support for arrays of domains
> 	o Add support for arrays of domains
> 	o Add support for arrays of complex types
parent 565de20f
...@@ -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: Thu Aug 17 02:45:07 EDT 2006 Last updated: Thu Aug 17 02:48:35 EDT 2006
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.
...@@ -228,7 +228,6 @@ Data Types ...@@ -228,7 +228,6 @@ Data Types
http://archives.postgresql.org/pgsql-hackers/2006-05/msg00072.php http://archives.postgresql.org/pgsql-hackers/2006-05/msg00072.php
* Add support for arrays of domains
* Add Globally/Universally Unique Identifier (GUID/UUID) * Add Globally/Universally Unique Identifier (GUID/UUID)
* Add support for SQL-standard GENERATED/IDENTITY columns * Add support for SQL-standard GENERATED/IDENTITY columns
...@@ -309,6 +308,8 @@ Data Types ...@@ -309,6 +308,8 @@ Data Types
o -Allow NULLs in arrays o -Allow NULLs in arrays
o Delay resolution of array expression's data type so assignment o Delay resolution of array expression's data type so assignment
coercion can be performed on empty array expressions coercion can be performed on empty array expressions
o Add support for arrays of domains
o Add support for arrays of complex types
* Binary Data * Binary Data
......
...@@ -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: Thu Aug 17 02:45:07 EDT 2006 Last updated: Thu Aug 17 02:48:35 EDT 2006
</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>.
...@@ -207,7 +207,6 @@ first. ...@@ -207,7 +207,6 @@ first.
</li><li>Fix CREATE CAST on DOMAINs </li><li>Fix CREATE CAST on DOMAINs
<p> <a href="http://archives.postgresql.org/pgsql-hackers/2006-05/msg00072.php">http://archives.postgresql.org/pgsql-hackers/2006-05/msg00072.php</a> <p> <a href="http://archives.postgresql.org/pgsql-hackers/2006-05/msg00072.php">http://archives.postgresql.org/pgsql-hackers/2006-05/msg00072.php</a>
</p> </p>
</li><li>Add support for arrays of domains
</li><li>Add Globally/Universally Unique Identifier (GUID/UUID) </li><li>Add Globally/Universally Unique Identifier (GUID/UUID)
</li><li>Add support for SQL-standard GENERATED/IDENTITY columns </li><li>Add support for SQL-standard GENERATED/IDENTITY columns
<p> <a href="http://archives.postgresql.org/pgsql-hackers/2006-07/msg00543.php">http://archives.postgresql.org/pgsql-hackers/2006-07/msg00543.php</a> <p> <a href="http://archives.postgresql.org/pgsql-hackers/2006-07/msg00543.php">http://archives.postgresql.org/pgsql-hackers/2006-07/msg00543.php</a>
...@@ -284,6 +283,8 @@ first. ...@@ -284,6 +283,8 @@ first.
<li>-<em>Allow NULLs in arrays</em> <li>-<em>Allow NULLs in arrays</em>
</li><li>Delay resolution of array expression's data type so assignment </li><li>Delay resolution of array expression's data type so assignment
coercion can be performed on empty array expressions coercion can be performed on empty array expressions
</li><li>Add support for arrays of domains
</li><li>Add support for arrays of complex types
</li></ul> </li></ul>
</li><li>Binary Data </li><li>Binary Data
<ul> <ul>
......
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