From 4f63cc6a30357d1780f73b056872fe1726c4e9e5 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 1 Feb 2005 02:40:50 +0000 Subject: Final FAQ cleanups to remove information about very old releases. --- doc/src/FAQ/FAQ.html | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'doc/src') diff --git a/doc/src/FAQ/FAQ.html b/doc/src/FAQ/FAQ.html index ab201442235..b0ccf2853f3 100644 --- a/doc/src/FAQ/FAQ.html +++ b/doc/src/FAQ/FAQ.html @@ -10,7 +10,7 @@ alink="#0000ff">
Last updated: Mon Jan 31 21:35:15 EST 2005
+Last updated: Mon Jan 31 21:40:28 EST 2005
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us) @@ -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.
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.
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.)