Commit 6bb9fc9f authored by Bruce Momjian's avatar Bruce Momjian

Add:

> * Allow more complex user/database default GUC settings
>   Currently, ALTER USER and ALTER DATABASE support per-user and
>   per-database defaults.  Consider adding per-user-and-database
>   defaults so things like search_path can be defaulted for a
>   specific user connecting to a specific database.
>
>
parent 7229b8cb
...@@ -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 Sep 29 22:59:01 EDT 2006 Last updated: Fri Sep 29 23:55:30 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.
...@@ -63,7 +63,12 @@ Administration ...@@ -63,7 +63,12 @@ Administration
partition selection. partition selection.
* Allow auto-selection of partitioned tables for min/max() operations * Allow auto-selection of partitioned tables for min/max() operations
* Allow more complex user/database default GUC settings
Currently, ALTER USER and ALTER DATABASE support per-user and
per-database defaults. Consider adding per-user-and-database
defaults so things like search_path can be defaulted for a
specific user connecting to a specific database.
* Improve replication solutions * Improve replication solutions
...@@ -793,6 +798,7 @@ Clients ...@@ -793,6 +798,7 @@ Clients
Triggers Triggers
======== ========
* Add deferred trigger queue file * Add deferred trigger queue file
Right now all deferred trigger information is stored in backend Right now all deferred trigger information is stored in backend
...@@ -872,6 +878,7 @@ Exotic Features ...@@ -872,6 +878,7 @@ Exotic Features
http://archives.postgresql.org/pgsql-hackers/2004-04/msg00818.php http://archives.postgresql.org/pgsql-hackers/2004-04/msg00818.php
Indexes Indexes
======= =======
......
...@@ -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 Sep 29 22:59:01 EDT 2006 Last updated: Fri Sep 29 23:55:30 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>.
...@@ -63,6 +63,12 @@ first. ...@@ -63,6 +63,12 @@ first.
partition selection. partition selection.
</p> </p>
</li><li>Allow auto-selection of partitioned tables for min/max() operations </li><li>Allow auto-selection of partitioned tables for min/max() operations
</li><li>Allow more complex user/database default GUC settings
<p> Currently, ALTER USER and ALTER DATABASE support per-user and
per-database defaults. Consider adding per-user-and-database
defaults so things like search_path can be defaulted for a
specific user connecting to a specific database.
</p>
</li><li>Improve replication solutions </li><li>Improve replication solutions
<ul> <ul>
<li>Load balancing <li>Load balancing
...@@ -718,6 +724,7 @@ first. ...@@ -718,6 +724,7 @@ first.
</li></ul> </li></ul>
</li></ul> </li></ul>
<h1><a name="section_10">Triggers</a></h1> <h1><a name="section_10">Triggers</a></h1>
<ul> <ul>
<li>Add deferred trigger queue file <li>Add deferred trigger queue file
<p> Right now all deferred trigger information is stored in backend <p> Right now all deferred trigger information is stored in backend
......
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