summaryrefslogtreecommitdiff
path: root/src/include/catalog
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2006-04-25 14:09:21 +0000
committerBruce Momjian <bruce@momjian.us>2006-04-25 14:09:21 +0000
commit6378fdd971eccc2ad4acd015b8e1baa27e0910a6 (patch)
treec89984eacac792568d6f3f811840c5d1c9795042 /src/include/catalog
parent11fbdf2f25fef011e884c4b92157c7b0aed9e8b2 (diff)
downloadpostgresql-6378fdd971eccc2ad4acd015b8e1baa27e0910a6.tar.gz
Add RESET CONNECTION, to reset all aspects of a session.
Hans-J?rgen Sch?nig
Diffstat (limited to 'src/include/catalog')
-rw-r--r--src/include/catalog/namespace.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/catalog/namespace.h b/src/include/catalog/namespace.h
index a9c97ea0fd..e398564279 100644
--- a/src/include/catalog/namespace.h
+++ b/src/include/catalog/namespace.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/catalog/namespace.h,v 1.39 2006/03/05 15:58:54 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/catalog/namespace.h,v 1.40 2006/04/25 14:09:16 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -74,6 +74,8 @@ extern void PopSpecialNamespace(Oid namespaceId);
extern Oid FindConversionByName(List *conname);
extern Oid FindDefaultConversionProc(int4 for_encoding, int4 to_encoding);
+extern void RemoveTempRelations(Oid tempNamespaceId);
+
/* initialization & transaction cleanup code */
extern void InitializeSearchPath(void);
extern void AtEOXact_Namespace(bool isCommit);