diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/include/catalog/pg_constraint.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/include/catalog/pg_constraint.h b/src/include/catalog/pg_constraint.h index c87bdedbbbe..5a969fc61e5 100644 --- a/src/include/catalog/pg_constraint.h +++ b/src/include/catalog/pg_constraint.h @@ -182,19 +182,6 @@ typedef enum ConstraintCategory CONSTRAINT_ASSERTION /* for future expansion */ } ConstraintCategory; -/* - * Used when cloning a foreign key constraint to a partition, so that the - * caller can optionally set up a verification pass for it. - */ -typedef struct ClonedConstraint -{ - Oid relid; - Oid refrelid; - Oid conindid; - Oid conid; - Constraint *constraint; -} ClonedConstraint; - extern Oid CreateConstraintEntry(const char *constraintName, Oid constraintNamespace, |