diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-08-23 02:48:12 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-08-23 02:48:12 +0000 |
commit | efdec1ac1bcef6f65b453efa70241a36c70863aa (patch) | |
tree | 730b4cd6aca1d7ddb47bf02a390eb1bddc3b8a1c /doc/src | |
parent | 54f55276060529343dff7c942604c7644a3f0f21 (diff) | |
download | postgresql-efdec1ac1bcef6f65b453efa70241a36c70863aa.tar.gz postgresql-efdec1ac1bcef6f65b453efa70241a36c70863aa.zip |
Update COPY/VIEW item:
< o Allow COPY to output from SELECT
> o Allow COPY (SELECT ...) TO 'filename'
< COPY should also be able to output views.
> COPY should also be able to output views using COPY (SELECT
> * FROM view) TO 'filename' internally.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/FAQ/TODO.html | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/src/FAQ/TODO.html b/doc/src/FAQ/TODO.html index e800404d8d3..fc99ab38c9c 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: Mon Aug 21 23:40:32 EDT 2006 +Last updated: Tue Aug 22 22:48:03 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>. @@ -555,10 +555,12 @@ first. the table at the same time, which is something that is currently allowed. </p> - </li><li>Allow COPY to output from SELECT -<p> COPY should also be able to output views. + </li><li>Allow COPY (SELECT ...) TO 'filename' +<p> COPY should also be able to output views using COPY (SELECT + </p><ul> + <li>FROM view) TO 'filename' internally. <a href="http://archives.postgresql.org/pgsql-patches/2005-09/msg00148.php">http://archives.postgresql.org/pgsql-patches/2005-09/msg00148.php</a> -</p> + </li></ul> </li></ul> </li><li>GRANT/REVOKE <ul> |