Commit 8a0f0ad5 authored by Tom Lane's avatar Tom Lane

Remove no-longer-used typedef.

struct ClonedConstraint is no longer needed, so delete it.

Discussion: https://postgr.es/m/18102.1557947143@sss.pgh.pa.us
parent 7505da2f
...@@ -182,19 +182,6 @@ typedef enum ConstraintCategory ...@@ -182,19 +182,6 @@ typedef enum ConstraintCategory
CONSTRAINT_ASSERTION /* for future expansion */ CONSTRAINT_ASSERTION /* for future expansion */
} ConstraintCategory; } 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, extern Oid CreateConstraintEntry(const char *constraintName,
Oid constraintNamespace, Oid constraintNamespace,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment