diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-09-02 23:47:39 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-09-02 23:47:39 +0000 |
commit | 18f2e0351ae4dd133cc5b7f10af57e18b591de0b (patch) | |
tree | cb1209e336bc515c429ec624289718d9fe77564b | |
parent | e0938c3f5b03e48bca32fe903f057e5777d43df8 (diff) | |
download | postgresql-18f2e0351ae4dd133cc5b7f10af57e18b591de0b.tar.gz postgresql-18f2e0351ae4dd133cc5b7f10af57e18b591de0b.zip |
Add:
> * Simplify ability to create partitioned tables
>
> This would allow creation of partitioned tables without requiring
> creation of rules for INSERT/UPDATE/DELETE, and constraints for
> rapid partition selection. Options could include range and hash
> partition selection.
>
> * Allow auto-selection of partitioned tables for min/max() operations
-rw-r--r-- | doc/TODO | 10 | ||||
-rw-r--r-- | doc/src/FAQ/TODO.html | 9 |
2 files changed, 17 insertions, 2 deletions
@@ -2,7 +2,7 @@ PostgreSQL TODO List ==================== Current maintainer: Bruce Momjian (bruce@momjian.us) -Last updated: Sat Sep 2 18:58:54 EDT 2006 +Last updated: Sat Sep 2 19:47:37 EDT 2006 The most recent version of this document can be viewed at http://www.postgresql.org/docs/faqs.TODO.html. @@ -64,6 +64,14 @@ Administration * -Re-enable the GUC full_page_writes in 8.2 when reliability issues have been addressed +* Simplify ability to create partitioned tables + + This would allow creation of partitioned tables without requiring + creation of rules for INSERT/UPDATE/DELETE, and constraints for + rapid partition selection. Options could include range and hash + partition selection. + +* Allow auto-selection of partitioned tables for min/max() operations * Improve replication solutions diff --git a/doc/src/FAQ/TODO.html b/doc/src/FAQ/TODO.html index fe406ce927e..d60ef97a47b 100644 --- a/doc/src/FAQ/TODO.html +++ b/doc/src/FAQ/TODO.html @@ -8,7 +8,7 @@ <body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF"> <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/> -Last updated: Sat Sep 2 18:58:54 EDT 2006 +Last updated: Sat Sep 2 19:47:37 EDT 2006 </p> <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>. @@ -64,6 +64,13 @@ first. </p> </li><li>-<em>Re-enable the GUC full_page_writes in 8.2 when reliability issues have</em> been addressed + </li><li>Simplify ability to create partitioned tables +<p> This would allow creation of partitioned tables without requiring + creation of rules for INSERT/UPDATE/DELETE, and constraints for + rapid partition selection. Options could include range and hash + partition selection. +</p> + </li><li>Allow auto-selection of partitioned tables for min/max() operations </li><li>Improve replication solutions <ul> <li>Load balancing |