Final FAQ cleanups to remove information about very old releases.
authorBruce Momjian
Tue, 1 Feb 2005 02:40:50 +0000 (02:40 +0000)
committerBruce Momjian
Tue, 1 Feb 2005 02:40:50 +0000 (02:40 +0000)
doc/FAQ
doc/src/FAQ/FAQ.html

diff --git a/doc/FAQ b/doc/FAQ
index 4c03f78c24eb554b94e57b853446c33cfdb28faa..58842e75b90ec5cc9bc2b7a8ef21b0a98fac2f89 100644 (file)
--- a/doc/FAQ
+++ b/doc/FAQ
@@ -1,7 +1,7 @@
 
                 Frequently Asked Questions (FAQ) for PostgreSQL
                                        
-   Last updated: Mon Jan 31 21:35:15 EST 2005
+   Last updated: Mon Jan 31 21:40:28 EST 2005
    
    Current maintainer: Bruce Momjian ([email protected])
    
    uncertain how a cross-database query should even behave.
    
    contrib/dblink allows cross-database queries using function calls. Of
-   course, a client can make simultaneous connections to different
+   course, a client can also make simultaneous connections to different
    databases and merge the results on the client side.
    
     4.19) How do I return multiple rows or columns from a function?
     
-   In 7.3, you can easily return multiple rows or columns from a
-   function, http://techdocs.postgresql.org/guides/SetReturningFunctions.
+   It is easy using set-returning functions,
+   http://techdocs.postgresql.org/guides/SetReturningFunctions.
    
     4.20) Why can't I reliably create/drop temporary tables in PL/PgSQL
     functions?
     
-   PL/PgSQL caches function contents, and an unfortunate side effect is
+   PL/PgSQL caches function scripts, and an unfortunate side effect is
    that if a PL/PgSQL function accesses a temporary table, and that table
    is later dropped and recreated, and the function called again, the
    function will fail because the cached function contents still point to
        possible to use a third-party encrypted transport, such as stunnel
        or ssh, rather than PostgreSQL's native SSL connections.)
      * Database user passwords are automatically encrypted when stored in
-       version 7.3. In previous versions, you must enable the option
-       PASSWORD_ENCRYPTION in postgresql.conf.
+       the system tables.
      * The server can run using an encrypted file system.
      _________________________________________________________________
    
index ab201442235f9210a566da99a21364c9360c2b7c..b0ccf2853f36629967458b8f9b14cde251bcfea6 100644 (file)
@@ -10,7 +10,7 @@
   alink="#0000ff">
     

Frequently Asked Questions (FAQ) for PostgreSQL

 
-    

Last updated: Mon Jan 31 21:35:15 EST 2005

+    

Last updated: Mon Jan 31 21:40:28 EST 2005

 
     

Current maintainer: Bruce Momjian (

@@ -1040,25 +1040,25 @@ length
     uncertain how a cross-database query should even behave.

 
     

contrib/dblink allows cross-database queries using

-    function calls. Of course, a client can make simultaneous
+    function calls. Of course, a client can also make simultaneous
     connections to different databases and merge the results on the
     client side.

 
     

4.19) How do I return multiple rows or

     columns from a function?
 
-    

In 7.3, you can easily return multiple rows or columns from a

-    function,
+    

It is easy using set-returning functions, 

     
     http://techdocs.postgresql.org/guides/SetReturningFunctions.
 
     

4.20) Why can't I reliably create/drop

     temporary tables in PL/PgSQL functions?
-    

PL/PgSQL caches function contents, and an unfortunate side effect

+
+    

PL/PgSQL caches function scripts, and an unfortunate side effect

     is that if a PL/PgSQL function accesses a temporary table, and that
-    table is later dropped and recreated, and the function called
-    again, the function will fail because the cached function contents
-    still point to the old temporary table. The solution is to use
+    table is later dropped and recreated, and the function called again,
+    the function will fail because the cached function contents still
+    point to the old temporary table. The solution is to use
     EXECUTE for temporary table access in PL/PgSQL. This
     will cause the query to be reparsed every time.

 
@@ -1075,8 +1075,7 @@ length
     encrypted transport, such as stunnel or ssh, rather than PostgreSQL's
     native SSL connections.)
     
  • Database user passwords are automatically encrypted when stored in
  • -    version 7.3. In previous versions, you must enable the option
    -    PASSWORD_ENCRYPTION in postgresql.conf.
    +    the system tables.
         
  • The server can run using an encrypted file system.
  •