Commit c6ef3264 authored by Bruce Momjian's avatar Bruce Momjian

Move items:

> * Add SQL99 WITH clause to SELECT
> * Add SQL99 WITH RECURSIVE to SELECT
< * Add SQL99 WITH clause to SELECT
< * Add SQL99 WITH RECURSIVE to SELECT
parent 5eb29fea
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
PostgreSQL TODO List PostgreSQL TODO List
==================== ====================
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us) Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
Last updated: Tue Jan 31 19:03:09 EST 2006 Last updated: Tue Jan 31 19:07:26 EST 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.
...@@ -415,6 +415,8 @@ SQL Commands ...@@ -415,6 +415,8 @@ SQL Commands
* Allow the count returned by SELECT, etc to be to represent as an int64 * Allow the count returned by SELECT, etc to be to represent as an int64
to allow a higher range of values to allow a higher range of values
* Make CLUSTER preserve recently-dead tuples per MVCC requirements * Make CLUSTER preserve recently-dead tuples per MVCC requirements
* Add SQL99 WITH clause to SELECT
* Add SQL99 WITH RECURSIVE to SELECT
* CREATE * CREATE
...@@ -746,8 +748,6 @@ Dependency Checking ...@@ -746,8 +748,6 @@ Dependency Checking
Exotic Features Exotic Features
=============== ===============
* Add SQL99 WITH clause to SELECT
* Add SQL99 WITH RECURSIVE to SELECT
* Add pre-parsing phase that converts non-ISO syntax to supported * Add pre-parsing phase that converts non-ISO syntax to supported
syntax syntax
......
...@@ -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:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</a>)<br/> <p>Current maintainer: Bruce Momjian (<a href="mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</a>)<br/>
Last updated: Tue Jan 31 19:03:09 EST 2006 Last updated: Tue Jan 31 19:07:26 EST 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>.
...@@ -381,6 +381,8 @@ first. ...@@ -381,6 +381,8 @@ first.
</li><li>Allow the count returned by SELECT, etc to be to represent as an int64 </li><li>Allow the count returned by SELECT, etc to be to represent as an int64
to allow a higher range of values to allow a higher range of values
</li><li>Make CLUSTER preserve recently-dead tuples per MVCC requirements </li><li>Make CLUSTER preserve recently-dead tuples per MVCC requirements
</li><li>Add SQL99 WITH clause to SELECT
</li><li>Add SQL99 WITH RECURSIVE to SELECT
</li><li>CREATE </li><li>CREATE
<ul> <ul>
<li>Allow CREATE TABLE AS to determine column lengths for complex <li>Allow CREATE TABLE AS to determine column lengths for complex
...@@ -679,9 +681,7 @@ first. ...@@ -679,9 +681,7 @@ first.
<h1><a name="section_12">Exotic Features</a></h1> <h1><a name="section_12">Exotic Features</a></h1>
<ul> <ul>
<li>Add SQL99 WITH clause to SELECT <li>Add pre-parsing phase that converts non-ISO syntax to supported
</li><li>Add SQL99 WITH RECURSIVE to SELECT
</li><li>Add pre-parsing phase that converts non-ISO syntax to supported
syntax syntax
<p> This could allow SQL written for other databases to run without <p> This could allow SQL written for other databases to run without
modification. modification.
......
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