Add:
authorBruce Momjian
Mon, 14 Jan 2008 22:14:30 +0000 (22:14 +0000)
committerBruce Momjian
Mon, 14 Jan 2008 22:14:30 +0000 (22:14 +0000)
>
> * Add the ability to automatically create materialized views
>
>   Right now materialized views require the user to create triggers on the
>   main table to keep the summary table current.  SQL syntax should be able
>   to manager the triggers and summary table automatically.  A more
>   sophisticated implementation would automatically retrieve from the
>   summary table when the main table is referenced, if possible.
>

doc/TODO
doc/src/FAQ/TODO.html

index 49d1057933187dbf26a206565be575769ed7c2d9..b16ec5f40271fd39aa4846658127f0e1a3c6a512 100644 (file)
--- a/doc/TODO
+++ b/doc/TODO
@@ -1,7 +1,7 @@
 PostgreSQL TODO List
 ====================
 Current maintainer:    Bruce Momjian ([email protected])
-Last updated:      Fri Jan 11 11:49:17 EST 2008
+Last updated:      Mon Jan 14 17:13:36 EST 2008
 
 The most recent version of this document can be viewed at
 http://www.postgresql.org/docs/faqs.TODO.html.
@@ -432,6 +432,15 @@ Views / Rules
 
   http://archives.postgresql.org/pgsql-hackers/2007-09/msg00577.php
 
+* Add the ability to automatically create materialized views
+
+  Right now materialized views require the user to create triggers on the
+  main table to keep the summary table current.  SQL syntax should be able
+  to manager the triggers and summary table automatically.  A more
+  sophisticated implementation would automatically retrieve from the
+  summary table when the main table is referenced, if possible.
+
+
 
 SQL Commands
 ============
index f216d0e5a13f8e7cab14f031ff2b6d972d63b374..420d27f9a60acd877c7bbde8550baebee594f76f 100644 (file)
@@ -8,7 +8,7 @@
 
 

PostgreSQL TODO List

 

Current maintainer:     Bruce Momjian ([email protected])

-Last updated:           Fri Jan 11 11:49:17 EST 2008
+Last updated:           Mon Jan 14 17:13:36 EST 2008
 

 

The most recent version of this document can be viewed at

 http://www.postgresql.org/docs/faqs.TODO.html.
@@ -385,6 +385,13 @@ first.  There is also a developer's wiki at
   
  • Make it possible to use RETURNING together with conditional DO INSTEAD
  •    rules, such as for partitioning setups
     

      http://archives.postgresql.org/pgsql-hackers/2007-09/msg00577.php

    +

    +  
  • Add the ability to automatically create materialized views
  • +

      Right now materialized views require the user to create triggers on the

    +  main table to keep the summary table current.  SQL syntax should be able
    +  to manager the triggers and summary table automatically.  A more
    +  sophisticated implementation would automatically retrieve from the
    +  summary table when the main table is referenced, if possible.
     

     
     

    SQL Commands