diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-11-24 16:52:50 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-11-24 16:52:50 +0000 |
commit | 74f418eb9aeecbb34d004aae44e96df037f2dc25 (patch) | |
tree | 54a73119e8b6de840ff005b96ca4b991355952cb /src/include/utils/syscache.h | |
parent | 61a93ed2da5adbacc57cc3b4b00805a7e3c868df (diff) | |
download | postgresql-74f418eb9aeecbb34d004aae44e96df037f2dc25.tar.gz postgresql-74f418eb9aeecbb34d004aae44e96df037f2dc25.zip |
Add pg_statistic index, add missing Hiroshi file.
Diffstat (limited to 'src/include/utils/syscache.h')
-rw-r--r-- | src/include/utils/syscache.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/include/utils/syscache.h b/src/include/utils/syscache.h index 62b3d4ada7a..158a7bdb367 100644 --- a/src/include/utils/syscache.h +++ b/src/include/utils/syscache.h @@ -8,7 +8,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: syscache.h,v 1.21 1999/11/22 17:56:38 momjian Exp $ + * $Id: syscache.h,v 1.22 1999/11/24 16:52:50 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -53,10 +53,11 @@ #define RELOID 20 #define RULENAME 21 #define RULEOID 22 -#define TYPENAME 23 -#define TYPEOID 24 -#define USERNAME 25 -#define USERSYSID 26 +#define SHADOWNAME 23 +#define SHADOWSYSID 24 +#define STATRELID 25 +#define TYPENAME 26 +#define TYPEOID 27 /* ---------------- * struct cachedesc: information needed for a call to InitSysCache() |