diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2008-12-19 16:25:19 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2008-12-19 16:25:19 +0000 |
commit | cae565e503c42a0942ca1771665243b4453c5770 (patch) | |
tree | 625121907a64d7716686a0be5f9e302fdfc42916 /src/include/utils/syscache.h | |
parent | 1eec10a2de3925ef791904835e2437d1efe97139 (diff) |
SQL/MED catalog manipulation facilities
This doesn't do any remote or external things yet, but it gives modules
like plproxy and dblink a standardized and future-proof system for
managing their connection information.
Martin Pihlak and Peter Eisentraut
Diffstat (limited to 'src/include/utils/syscache.h')
-rw-r--r-- | src/include/utils/syscache.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/include/utils/syscache.h b/src/include/utils/syscache.h index e6220477728..ded7a1d0523 100644 --- a/src/include/utils/syscache.h +++ b/src/include/utils/syscache.h @@ -9,7 +9,7 @@ * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/syscache.h,v 1.72 2008/05/07 01:04:49 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/syscache.h,v 1.73 2008/12/19 16:25:19 petere Exp $ * *------------------------------------------------------------------------- */ @@ -51,6 +51,10 @@ enum SysCacheIdentifier DATABASEOID, ENUMOID, ENUMTYPOIDNAME, + FOREIGNDATAWRAPPERNAME, + FOREIGNDATAWRAPPEROID, + FOREIGNSERVERNAME, + FOREIGNSERVEROID, INDEXRELID, LANGNAME, LANGOID, @@ -76,7 +80,9 @@ enum SysCacheIdentifier TSTEMPLATENAMENSP, TSTEMPLATEOID, TYPENAMENSP, - TYPEOID + TYPEOID, + USERMAPPINGOID, + USERMAPPINGUSERSERVER }; extern void InitCatalogCache(void); |