Commit 81b1551e authored by Bruce Momjian's avatar Bruce Momjian

Spacing improvement.

parent ecf7fcce
...@@ -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: Sat Jul 30 00:05:03 EDT 2005 Last updated: Sat Jul 30 23:08:20 EDT 2005
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.
...@@ -73,6 +73,8 @@ Administration ...@@ -73,6 +73,8 @@ Administration
o Allow postgresql.conf file values to be changed via an SQL API o Allow postgresql.conf file values to be changed via an SQL API
o Allow the server to be stopped/restarted via an SQL API o Allow the server to be stopped/restarted via an SQL API
* Allow server logs to be remotely read using SQL commands
* Tablespaces * Tablespaces
...@@ -146,7 +148,6 @@ Monitoring ...@@ -146,7 +148,6 @@ Monitoring
* Add ability to monitor the use of temporary sort files * Add ability to monitor the use of temporary sort files
* -Add session start time and last statement time to pg_stat_activity * -Add session start time and last statement time to pg_stat_activity
* Allow server logs to be remotely read using SQL commands
* -Add a function that returns the start time of the postmaster * -Add a function that returns the start time of the postmaster
...@@ -177,6 +178,7 @@ Data Types ...@@ -177,6 +178,7 @@ Data Types
throw an error on overflow throw an error on overflow
* Add 'tid != tid ' operator for use in corruption recovery * Add 'tid != tid ' operator for use in corruption recovery
* Dates and Times * Dates and Times
o Allow infinite dates just like infinite timestamps o Allow infinite dates just like infinite timestamps
...@@ -381,6 +383,7 @@ SQL Commands ...@@ -381,6 +383,7 @@ SQL Commands
enable_constraint_exclusion enable_constraint_exclusion
* Allow EXPLAIN output to be more easily processed by scripts * Allow EXPLAIN output to be more easily processed by scripts
* CREATE * CREATE
o Allow CREATE TABLE AS to determine column lengths for complex o Allow CREATE TABLE AS to determine column lengths for complex
...@@ -560,6 +563,7 @@ Clients ...@@ -560,6 +563,7 @@ Clients
* psql * psql
o Have psql show current values for a sequence o Have psql show current values for a sequence
o Move psql backslash database information into the backend, use o Move psql backslash database information into the backend, use
mnemonic commands? [psql] mnemonic commands? [psql]
...@@ -682,6 +686,7 @@ Exotic Features ...@@ -682,6 +686,7 @@ Exotic Features
* -Add two-phase commit * -Add two-phase commit
* Add the features of packages * Add the features of packages
o Make private objects accessable only to objects in the same schema o Make private objects accessable only to objects in the same schema
...@@ -761,6 +766,8 @@ Indexes ...@@ -761,6 +766,8 @@ Indexes
* Allow enable_constraint_exclusion to work for UNIONs like it does for * Allow enable_constraint_exclusion to work for UNIONs like it does for
inheritance inheritance
* Allow enable_constraint_exclusion to work for UPDATE and DELETE queries * Allow enable_constraint_exclusion to work for UPDATE and DELETE queries
* GIST * GIST
o Add more GIST index support for geometric data types o Add more GIST index support for geometric data types
...@@ -829,7 +836,9 @@ Cache Usage ...@@ -829,7 +836,9 @@ Cache Usage
when the first valid heap lookup happens. This bit would have to when the first valid heap lookup happens. This bit would have to
be cleared when a heap tuple is expired. be cleared when a heap tuple is expired.
* Consider automatic caching of queries at various levels: * Consider automatic caching of queries at various levels:
o Parsed query tree o Parsed query tree
o Query execute plan o Query execute plan
o Query results o Query results
...@@ -886,6 +895,8 @@ Vacuum ...@@ -886,6 +895,8 @@ Vacuum
the event of a system crash, the bitmap would probably be invalidated. the event of a system crash, the bitmap would probably be invalidated.
* Add system view to show free space map contents * Add system view to show free space map contents
* Auto-vacuum * Auto-vacuum
o -Move into the backend code o -Move into the backend code
...@@ -1088,6 +1099,7 @@ Source Code ...@@ -1088,6 +1099,7 @@ Source Code
* Fix sgmltools so PDFs can be generated with bookmarks * Fix sgmltools so PDFs can be generated with bookmarks
* Add C code on Unix to copy directories for use in creating new databases * Add C code on Unix to copy directories for use in creating new databases
* Win32 * Win32
o Remove configure.in check for link failure when cause is found o Remove configure.in check for link failure when cause is found
...@@ -1108,6 +1120,7 @@ Source Code ...@@ -1108,6 +1120,7 @@ Source Code
like towupper(). However, UTF8 already works with normal like towupper(). However, UTF8 already works with normal
locales but provides no ordering or character set classes. locales but provides no ordering or character set classes.
* Wire Protocol Changes * Wire Protocol Changes
o Allow dynamic character set handling o Allow dynamic character set handling
......
...@@ -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: Sat Jul 30 00:05:03 EDT 2005 Last updated: Sat Jul 30 23:08:20 EDT 2005
</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>.
...@@ -70,6 +70,9 @@ first. ...@@ -70,6 +70,9 @@ first.
</p> </p>
</li><li>Allow postgresql.conf file values to be changed via an SQL API </li><li>Allow postgresql.conf file values to be changed via an SQL API
</li><li>Allow the server to be stopped/restarted via an SQL API </li><li>Allow the server to be stopped/restarted via an SQL API
<ul>
<li>Allow server logs to be remotely read using SQL commands
</li></ul>
</li></ul> </li></ul>
</li><li>Tablespaces </li><li>Tablespaces
<ul> <ul>
...@@ -136,7 +139,6 @@ first. ...@@ -136,7 +139,6 @@ first.
</p> </p>
</li><li>Add ability to monitor the use of temporary sort files </li><li>Add ability to monitor the use of temporary sort files
</li><li>-<em>Add session start time and last statement time to pg_stat_activity</em> </li><li>-<em>Add session start time and last statement time to pg_stat_activity</em>
</li><li>Allow server logs to be remotely read using SQL commands
</li><li>-<em>Add a function that returns the start time of the postmaster</em> </li><li>-<em>Add a function that returns the start time of the postmaster</em>
</li></ul> </li></ul>
<h1><a name="section_4">Data Types</a></h1> <h1><a name="section_4">Data Types</a></h1>
......
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