diff options
Diffstat (limited to 'src/include/catalog/namespace.h')
-rw-r--r-- | src/include/catalog/namespace.h | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/src/include/catalog/namespace.h b/src/include/catalog/namespace.h index d3f0dc98098..4f2d1ef5061 100644 --- a/src/include/catalog/namespace.h +++ b/src/include/catalog/namespace.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/catalog/namespace.h,v 1.37 2005/10/15 02:49:42 momjian Exp $ + * $PostgreSQL: pgsql/src/include/catalog/namespace.h,v 1.38 2006/02/10 19:01:12 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -32,21 +32,6 @@ typedef struct _FuncCandidateList Oid args[1]; /* arg types --- VARIABLE LENGTH ARRAY */ } *FuncCandidateList; /* VARIABLE LENGTH STRUCT */ -/* - * This structure holds a list of opclass candidates found by namespace - * lookup. - */ -typedef struct _OpclassCandidateList -{ - struct _OpclassCandidateList *next; - char *opcname_tmp; /* for internal use of namespace lookup */ - int pathpos; /* for internal use of namespace lookup */ - Oid oid; /* the opclass's OID */ - Oid opcintype; /* type of data indexed by opclass */ - bool opcdefault; /* T if opclass is default for opcintype */ - Oid opckeytype; /* type of data in index, or InvalidOid */ -} *OpclassCandidateList; - extern Oid RangeVarGetRelid(const RangeVar *relation, bool failOK); extern Oid RangeVarGetCreationNamespace(const RangeVar *newRelation); @@ -62,7 +47,6 @@ extern bool FunctionIsVisible(Oid funcid); extern FuncCandidateList OpernameGetCandidates(List *names, char oprkind); extern bool OperatorIsVisible(Oid oprid); -extern OpclassCandidateList OpclassGetCandidates(Oid amid); extern Oid OpclassnameGetOpcid(Oid amid, const char *opcname); extern bool OpclassIsVisible(Oid opcid); |