diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/catalog/dependency.h | 8 | ||||
| -rw-r--r-- | src/include/catalog/pg_constraint.h | 8 |
2 files changed, 2 insertions, 14 deletions
diff --git a/src/include/catalog/dependency.h b/src/include/catalog/dependency.h index c78556f9e8d..157daf6cf97 100644 --- a/src/include/catalog/dependency.h +++ b/src/include/catalog/dependency.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/dependency.h,v 1.19 2006/02/11 22:17:19 momjian Exp $ + * $PostgreSQL: pgsql/src/include/catalog/dependency.h,v 1.20 2006/02/12 19:11:01 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -179,12 +179,6 @@ extern long changeDependencyFor(Oid classId, Oid objectId, extern bool objectIsInternalDependency(Oid classId, Oid objectId); -extern List* getDependentOids(Oid classId, Oid objId, - Oid refClassId, DependencyType deptype); - -extern List* getReferencingOids(Oid refClassId, Oid refObjId, Oid refObjSubId, - Oid classId, DependencyType deptype); - /* in pg_shdepend.c */ extern void recordSharedDependencyOn(ObjectAddress *depender, diff --git a/src/include/catalog/pg_constraint.h b/src/include/catalog/pg_constraint.h index 6f1312e46bb..40005e122ed 100644 --- a/src/include/catalog/pg_constraint.h +++ b/src/include/catalog/pg_constraint.h @@ -8,7 +8,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/pg_constraint.h,v 1.20 2006/02/11 22:17:19 momjian Exp $ + * $PostgreSQL: pgsql/src/include/catalog/pg_constraint.h,v 1.21 2006/02/12 19:11:01 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -187,10 +187,4 @@ extern char *GetConstraintNameForTrigger(Oid triggerId); extern void AlterConstraintNamespaces(Oid ownerId, Oid oldNspId, Oid newNspId, bool isType); -extern void RenameConstraint(Oid conId, const char* newName, - bool implicitRename, const char* cmdName); - -extern Oid GetRelationConstraintOid(Oid relId, const char* name); -extern Oid GetConstraintRelationId(Oid conId); - #endif /* PG_CONSTRAINT_H */ |
