diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-15 07:42:52 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-15 07:42:52 +0000 |
commit | a4402ecc8c1e75c72025329ad4ca99320931c8b4 (patch) | |
tree | c2b010e4994661dae833cdc640147972c12d7979 /src/backend/utils/syscache.h | |
parent | d6fa4d95cda3368cbf29074d0ecff9fdf2f05fc8 (diff) |
Fixes a bug in 'create index'
Submitted by: Dan McGuirk <mcguirk@indirect.com>
Diffstat (limited to 'src/backend/utils/syscache.h')
-rw-r--r-- | src/backend/utils/syscache.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/utils/syscache.h b/src/backend/utils/syscache.h index beea5969404..63ea61f0384 100644 --- a/src/backend/utils/syscache.h +++ b/src/backend/utils/syscache.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: syscache.h,v 1.1.1.1 1996/07/09 06:22:02 scrappy Exp $ + * $Id: syscache.h,v 1.2 1996/08/15 07:42:45 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -58,6 +58,7 @@ #define GROSYSID 24 #define REWRITENAME 25 #define PROSRC 26 +#define CLADEFTYPE 27 /* ---------------- * struct cachedesc: information needed for a call to InitSysCache() |