diff options
author | Bruce Momjian | 2005-02-25 04:18:27 +0000 |
---|---|---|
committer | Bruce Momjian | 2005-02-25 04:18:27 +0000 |
commit | 6b80ca2f06d6c5ba0112d2f8cbcec88d82721167 (patch) | |
tree | 27dd8349889763c01f1120b8720ef53b4536c7ad /doc/FAQ | |
parent | e49da4855c3f13e5e83d9407891e2008a70531e2 (diff) |
Fix plpgsql error message for dropped temporary tables.
Diffstat (limited to 'doc/FAQ')
-rw-r--r-- | doc/FAQ | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,7 +1,7 @@ Frequently Asked Questions (FAQ) for PostgreSQL - Last updated: Thu Feb 24 19:45:40 EST 2005 + Last updated: Thu Feb 24 23:18:31 EST 2005 Current maintainer: Bruce Momjian ([email protected]) @@ -77,8 +77,8 @@ 4.17) How do I perform an outer join? 4.18) How do I perform queries using multiple databases? 4.19) How do I return multiple rows or columns from a function? - 4.20) Why do I get "missing oid" errors when accessing temporary - tables in PL/PgSQL functions? + 4.20) Why do I get "relation with OID ##### does not exist" errors + when accessing temporary tables in PL/PgSQL functions? 4.21) What encryption options are available? Extending PostgreSQL @@ -821,8 +821,8 @@ It is easy using set-returning functions, http://techdocs.postgresql.org/guides/SetReturningFunctions. - 4.20) Why do I get "missing oid" errors when accessing temporary tables in - PL/PgSQL functions? + 4.20) Why do I get "relation with OID ##### does not exist" errors when + accessing temporary tables in PL/PgSQL functions? PL/PgSQL caches function scripts, and an unfortunate side effect is that if a PL/PgSQL function accesses a temporary table, and that table |