diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-11-01 02:29:27 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-11-01 02:29:27 +0000 |
commit | d16b706e7af98f7382198c0d53e1ba19d8c99fa5 (patch) | |
tree | a2ec3dc11a8a7aec5ce97899c164b76f8e0eaad6 /src/include/utils/syscache.h | |
parent | 1973e90ce2ca366fe8e0f29e4115ea69a5b277c0 (diff) | |
download | postgresql-d16b706e7af98f7382198c0d53e1ba19d8c99fa5.tar.gz postgresql-d16b706e7af98f7382198c0d53e1ba19d8c99fa5.zip |
Allow indexes on system catalogs for use in cache code.
Thanks to Hiroshi
Diffstat (limited to 'src/include/utils/syscache.h')
-rw-r--r-- | src/include/utils/syscache.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/include/utils/syscache.h b/src/include/utils/syscache.h index 5ba3b16e9a7..68cb079c4f1 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.19 1999/09/30 10:31:47 wieck Exp $ + * $Id: syscache.h,v 1.20 1999/11/01 02:29:27 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -48,18 +48,18 @@ #define TYPOID 13 #define AMNAME 14 #define CLANAME 15 -#define INDRELIDKEY 16 -#define INHRELID 17 -#define RULOID 18 -#define AGGNAME 19 -#define LISTENREL 20 -#define USENAME 21 -#define USESYSID 22 -#define GRONAME 23 -#define GROSYSID 24 -#define REWRITENAME 25 -#define CLADEFTYPE 26 -#define LANOID 27 +/* #define INDRELIDKEY 16 */ +#define INHRELID 16 +#define RULOID 17 +#define AGGNAME 18 +#define LISTENREL 19 +#define USENAME 20 +#define USESYSID 21 +#define GRONAME 22 +#define GROSYSID 23 +#define REWRITENAME 24 +#define CLADEFTYPE 25 +#define LANOID 26 /* ---------------- * struct cachedesc: information needed for a call to InitSysCache() |