diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-03-22 21:34:44 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-03-22 21:34:44 +0000 |
commit | a25b94c080a644a66983bbcf82a4e358aa47b7df (patch) | |
tree | c95562da0fe5569e9cd3ee204718912392fbbb0c /src/include/utils/syscache.h | |
parent | 48c916490179e4a1db93e0924a72c3e4f1f00e55 (diff) | |
download | postgresql-a25b94c080a644a66983bbcf82a4e358aa47b7df.tar.gz postgresql-a25b94c080a644a66983bbcf82a4e358aa47b7df.zip |
Create the pg_namespace system catalog. Doesn't do much yet, but it's
there and CREATE SCHEMA will make entries in it...
Diffstat (limited to 'src/include/utils/syscache.h')
-rw-r--r-- | src/include/utils/syscache.h | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/src/include/utils/syscache.h b/src/include/utils/syscache.h index d4bcd14256e..45de795c9c8 100644 --- a/src/include/utils/syscache.h +++ b/src/include/utils/syscache.h @@ -9,7 +9,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: syscache.h,v 1.38 2002/03/21 23:27:25 tgl Exp $ + * $Id: syscache.h,v 1.39 2002/03/22 21:34:44 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -45,18 +45,20 @@ #define INHRELID 14 #define LANGNAME 15 #define LANGOID 16 -#define OPERNAME 17 -#define OPEROID 18 -#define PROCNAME 19 -#define PROCOID 20 -#define RELNAME 21 -#define RELOID 22 -#define RULENAME 23 -#define SHADOWNAME 24 -#define SHADOWSYSID 25 -#define STATRELATT 26 -#define TYPENAME 27 -#define TYPEOID 28 +#define NAMESPACENAME 17 +#define NAMESPACEOID 18 +#define OPERNAME 19 +#define OPEROID 20 +#define PROCNAME 21 +#define PROCOID 22 +#define RELNAME 23 +#define RELOID 24 +#define RULENAME 25 +#define SHADOWNAME 26 +#define SHADOWSYSID 27 +#define STATRELATT 28 +#define TYPENAME 29 +#define TYPEOID 30 extern void InitCatalogCache(void); |