Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Restructure foreign key handling code for ATTACH/DETACH
authorÁlvaro Herrera <alvherre@alvh.no-ip.org>
Tue, 22 Oct 2024 14:01:18 +0000 (16:01 +0200)
committerÁlvaro Herrera <alvherre@alvh.no-ip.org>
Tue, 22 Oct 2024 14:01:18 +0000 (16:01 +0200)
... to fix bugs when the referenced table is partitioned.

The catalog representation we chose for foreign keys connecting
partitioned tables (in commit f56f8f8da6af) is inconvenient, in the
sense that a standalone table has a different way to represent the
constraint when referencing a partitioned table, than when the same
table becomes a partition (and vice versa).  Because of this, we need to
create additional catalog rows on detach (pg_constraint and pg_trigger),
and remove them on attach.  We were doing some of those things, but not
all of them, leading to missing catalog rows in certain cases.

The worst problem seems to be that we are missing action triggers after
detaching a partition, which means that you could update/delete rows
from the referenced partitioned table that still had referencing rows on
that table, the server failing to throw the required errors.

!!!
Note that this means existing databases with FKs that reference
partitioned tables might have rows that break relational integrity, on
tables that were once partitions on the referencing side of the FK.

Another possible problem is that trying to reattach a table
that had been detached would fail indicating that internal triggers
cannot be found, which from the user's point of view is nonsensical.

In branches 15 and above, we fix this by creating a new helper function
addFkConstraint() which is in charge of creating a standalone
pg_constraint row, and repurposing addFkRecurseReferencing() and
addFkRecurseReferenced() so that they're only the recursive routine for
each side of the FK, and they call addFkConstraint() to create
pg_constraint at each partitioning level and add the necessary triggers.
These new routines can be used during partition creation, partition
attach and detach, and foreign key creation.  This reduces redundant
code and simplifies the flow.

In branches 14 and 13, we have a much simpler fix that consists on
simply removing the constraint on detach.  The reason is that those
branches are missing commit f4566345cf40, which reworked the way this
works in a way that we didn't consider back-patchable at the time.

We opted to leave branch 12 alone, because it's different from branch 13
enough that the fix doesn't apply; and because it is going in EOL mode
very soon, patching it now might be worse since there's no way to undo
the damage if it goes wrong.

Existing databases might need to be repaired.

In the future we might want to rethink the catalog representation to
avoid this problem, but for now the code seems to do what's required to
make the constraints operate correctly.

Co-authored-by: Jehan-Guillaume de Rorthais <jgdr@dalibo.com>
Co-authored-by: Tender Wang <tndrwang@gmail.com>
Co-authored-by: Alvaro Herrera <alvherre@alvh.no-ip.org>
Reported-by: Guillaume Lelarge <guillaume@lelarge.info>
Reported-by: Jehan-Guillaume de Rorthais <jgdr@dalibo.com>
Reported-by: Thomas Baehler (SBB CFF FFS) <thomas.baehler2@sbb.ch>
Discussion: https://postgr.es/m/20230420144344.40744130@karst
Discussion: https://postgr.es/m/20230705233028.2f554f73@karst
Discussion: https://postgr.es/m/GVAP278MB02787E7134FD691861635A8BC9032@GVAP278MB0278.CHEP278.PROD.OUTLOOK.COM
Discussion: https://postgr.es/m/18541-628a61bc267cd2d3@postgresql.org

src/backend/commands/tablecmds.c
src/test/regress/expected/foreign_key.out
src/test/regress/sql/foreign_key.sql
src/tools/pgindent/typedefs.list

index e6c911fd9a44f21f3feaa1718541ef363021a770..b6968d23ed5d95c7dfbea4e6402ee0662f3a3d7b 100644 (file)
@@ -335,6 +335,14 @@ typedef struct ForeignTruncateInfo
    List       *rels;
 } ForeignTruncateInfo;
 
+/* Partial or complete FK creation in addFkConstraint() */
+typedef enum addFkConstraintSides
+{
+   addFkReferencedSide,
+   addFkReferencingSide,
+   addFkBothSides,
+} addFkConstraintSides;
+
 /*
  * Partition tables are expected to be dropped when the parent partitioned
  * table gets dropped. Hence for partitioning we use AUTO dependency.
@@ -489,16 +497,25 @@ static ObjectAddress ATAddForeignKeyConstraint(List **wqueue, AlteredTableInfo *
                                               Relation rel, Constraint *fkconstraint,
                                               bool recurse, bool recursing,
                                               LOCKMODE lockmode);
-static ObjectAddress addFkRecurseReferenced(List **wqueue, Constraint *fkconstraint,
-                                           Relation rel, Relation pkrel, Oid indexOid, Oid parentConstr,
-                                           int numfks, int16 *pkattnum, int16 *fkattnum,
-                                           Oid *pfeqoperators, Oid *ppeqoperators, Oid *ffeqoperators,
-                                           int numfkdelsetcols, int16 *fkdelsetcols,
-                                           bool old_check_ok,
-                                           Oid parentDelTrigger, Oid parentUpdTrigger);
 static void validateFkOnDeleteSetColumns(int numfks, const int16 *fkattnums,
                                         int numfksetcols, const int16 *fksetcolsattnums,
                                         List *fksetcols);
+static ObjectAddress addFkConstraint(addFkConstraintSides fkside,
+                                    char *constraintname,
+                                    Constraint *fkconstraint, Relation rel,
+                                    Relation pkrel, Oid indexOid,
+                                    Oid parentConstr,
+                                    int numfks, int16 *pkattnum, int16 *fkattnum,
+                                    Oid *pfeqoperators, Oid *ppeqoperators,
+                                    Oid *ffeqoperators, int numfkdelsetcols,
+                                    int16 *fkdelsetcols, bool is_internal);
+static void addFkRecurseReferenced(Constraint *fkconstraint,
+                                  Relation rel, Relation pkrel, Oid indexOid, Oid parentConstr,
+                                  int numfks, int16 *pkattnum, int16 *fkattnum,
+                                  Oid *pfeqoperators, Oid *ppeqoperators, Oid *ffeqoperators,
+                                  int numfkdelsetcols, int16 *fkdelsetcols,
+                                  bool old_check_ok,
+                                  Oid parentDelTrigger, Oid parentUpdTrigger);
 static void addFkRecurseReferencing(List **wqueue, Constraint *fkconstraint,
                                    Relation rel, Relation pkrel, Oid indexOid, Oid parentConstr,
                                    int numfks, int16 *pkattnum, int16 *fkattnum,
@@ -628,7 +645,7 @@ static ObjectAddress ATExecDetachPartition(List **wqueue, AlteredTableInfo *tab,
 static void DetachPartitionFinalize(Relation rel, Relation partRel,
                                    bool concurrent, Oid defaultPartOid);
 static ObjectAddress ATExecDetachPartitionFinalize(Relation rel, RangeVar *name);
-static ObjectAddress ATExecAttachPartitionIdx(List **wqueue, Relation rel,
+static ObjectAddress ATExecAttachPartitionIdx(List **wqueue, Relation parentIdx,
                                              RangeVar *name);
 static void validatePartitionedIndex(Relation partedIdx, Relation partedTbl);
 static void refuseDupeIndexAttach(Relation parentIdx, Relation partIdx,
@@ -5283,7 +5300,7 @@ ATExecCmd(List **wqueue, AlteredTableInfo *tab,
                                  ((PartitionCmd *) cmd->def)->concurrent);
            break;
        case AT_DetachPartitionFinalize:
-           ATExecDetachPartitionFinalize(rel, ((PartitionCmd *) cmd->def)->name);
+           address = ATExecDetachPartitionFinalize(rel, ((PartitionCmd *) cmd->def)->name);
            break;
        default:                /* oops */
            elog(ERROR, "unrecognized alter table type: %d",
@@ -9524,25 +9541,37 @@ ATAddForeignKeyConstraint(List **wqueue, AlteredTableInfo *tab, Relation rel,
        ffeqoperators[i] = ffeqop;
    }
 
-   /*
-    * Create all the constraint and trigger objects, recursing to partitions
-    * as necessary.  First handle the referenced side.
-    */
-   address = addFkRecurseReferenced(wqueue, fkconstraint, rel, pkrel,
-                                    indexOid,
-                                    InvalidOid,    /* no parent constraint */
-                                    numfks,
-                                    pkattnum,
-                                    fkattnum,
-                                    pfeqoperators,
-                                    ppeqoperators,
-                                    ffeqoperators,
-                                    numfkdelsetcols,
-                                    fkdelsetcols,
-                                    old_check_ok,
-                                    InvalidOid, InvalidOid);
-
-   /* Now handle the referencing side. */
+   /* First, create the constraint catalog entry itself. */
+   address = addFkConstraint(addFkBothSides,
+                             fkconstraint->conname, fkconstraint, rel, pkrel,
+                             indexOid,
+                             InvalidOid,   /* no parent constraint */
+                             numfks,
+                             pkattnum,
+                             fkattnum,
+                             pfeqoperators,
+                             ppeqoperators,
+                             ffeqoperators,
+                             numfkdelsetcols,
+                             fkdelsetcols,
+                             false);
+
+   /* Next process the action triggers at the referenced side and recurse */
+   addFkRecurseReferenced(fkconstraint, rel, pkrel,
+                          indexOid,
+                          address.objectId,
+                          numfks,
+                          pkattnum,
+                          fkattnum,
+                          pfeqoperators,
+                          ppeqoperators,
+                          ffeqoperators,
+                          numfkdelsetcols,
+                          fkdelsetcols,
+                          old_check_ok,
+                          InvalidOid, InvalidOid);
+
+   /* Lastly create the check triggers at the referencing side and recurse */
    addFkRecurseReferencing(wqueue, fkconstraint, rel, pkrel,
                            indexOid,
                            address.objectId,
@@ -9602,46 +9631,41 @@ validateFkOnDeleteSetColumns(int numfks, const int16 *fkattnums,
 }
 
 /*
- * addFkRecurseReferenced
- *     subroutine for ATAddForeignKeyConstraint; recurses on the referenced
- *     side of the constraint
- *
- * Create pg_constraint rows for the referenced side of the constraint,
- * referencing the parent of the referencing side; also create action triggers
- * on leaf partitions.  If the table is partitioned, recurse to handle each
- * partition.
+ * addFkConstraint
+ *     Install pg_constraint entries to implement a foreign key constraint.
+ *     Caller must separately invoke addFkRecurseReferenced and
+ *     addFkRecurseReferencing, as appropriate, to install pg_trigger entries
+ *     and (for partitioned tables) recurse to partitions.
  *
- * wqueue is the ALTER TABLE work queue; can be NULL when not running as part
- * of an ALTER TABLE sequence.
- * fkconstraint is the constraint being added.
- * rel is the root referencing relation.
- * pkrel is the referenced relation; might be a partition, if recursing.
- * indexOid is the OID of the index (on pkrel) implementing this constraint.
- * parentConstr is the OID of a parent constraint; InvalidOid if this is a
- * top-level constraint.
- * numfks is the number of columns in the foreign key
- * pkattnum is the attnum array of referenced attributes.
- * fkattnum is the attnum array of referencing attributes.
- * numfkdelsetcols is the number of columns in the ON DELETE SET NULL/DEFAULT
+ * fkside: the side of the FK (or both) to create.  Caller should
+ *      call addFkRecurseReferenced if this is addFkReferencedSide,
+ *      addFkRecurseReferencing if it's addFkReferencingSide, or both if it's
+ *      addFkBothSides.
+ * constraintname: the base name for the constraint being added,
+ *      copied to fkconstraint->conname if the latter is not set
+ * fkconstraint: the constraint being added
+ * rel: the root referencing relation
+ * pkrel: the referenced relation; might be a partition, if recursing
+ * indexOid: the OID of the index (on pkrel) implementing this constraint
+ * parentConstr: the OID of a parent constraint; InvalidOid if this is a
+ *      top-level constraint
+ * numfks: the number of columns in the foreign key
+ * pkattnum: the attnum array of referenced attributes
+ * fkattnum: the attnum array of referencing attributes
+ * pf/pp/ffeqoperators: OID array of operators between columns
+ * numfkdelsetcols: the number of columns in the ON DELETE SET NULL/DEFAULT
  *      (...) clause
- * fkdelsetcols is the attnum array of the columns in the ON DELETE SET
+ * fkdelsetcols: the attnum array of the columns in the ON DELETE SET
  *      NULL/DEFAULT clause
- * pf/pp/ffeqoperators are OID array of operators between columns.
- * old_check_ok signals that this constraint replaces an existing one that
- * was already validated (thus this one doesn't need validation).
- * parentDelTrigger and parentUpdTrigger, when being recursively called on
- * a partition, are the OIDs of the parent action triggers for DELETE and
- * UPDATE respectively.
  */
 static ObjectAddress
-addFkRecurseReferenced(List **wqueue, Constraint *fkconstraint, Relation rel,
-                      Relation pkrel, Oid indexOid, Oid parentConstr,
-                      int numfks,
-                      int16 *pkattnum, int16 *fkattnum, Oid *pfeqoperators,
-                      Oid *ppeqoperators, Oid *ffeqoperators,
-                      int numfkdelsetcols, int16 *fkdelsetcols,
-                      bool old_check_ok,
-                      Oid parentDelTrigger, Oid parentUpdTrigger)
+addFkConstraint(addFkConstraintSides fkside,
+               char *constraintname, Constraint *fkconstraint,
+               Relation rel, Relation pkrel, Oid indexOid, Oid parentConstr,
+               int numfks, int16 *pkattnum,
+               int16 *fkattnum, Oid *pfeqoperators, Oid *ppeqoperators,
+               Oid *ffeqoperators, int numfkdelsetcols, int16 *fkdelsetcols,
+               bool is_internal)
 {
    ObjectAddress address;
    Oid         constrOid;
@@ -9649,8 +9673,6 @@ addFkRecurseReferenced(List **wqueue, Constraint *fkconstraint, Relation rel,
    bool        conislocal;
    int         coninhcount;
    bool        connoinherit;
-   Oid         deleteTriggerOid,
-               updateTriggerOid;
 
    /*
     * Verify relkind for each referenced partition.  At the top level, this
@@ -9669,13 +9691,16 @@ addFkRecurseReferenced(List **wqueue, Constraint *fkconstraint, Relation rel,
     */
    if (ConstraintNameIsUsed(CONSTRAINT_RELATION,
                             RelationGetRelid(rel),
-                            fkconstraint->conname))
+                            constraintname))
        conname = ChooseConstraintName(RelationGetRelationName(rel),
                                       ChooseForeignKeyConstraintNameAddition(fkconstraint->fk_attrs),
                                       "fkey",
                                       RelationGetNamespace(rel), NIL);
    else
-       conname = fkconstraint->conname;
+       conname = constraintname;
+
+   if (fkconstraint->conname == NULL)
+       fkconstraint->conname = pstrdup(conname);
 
    if (OidIsValid(parentConstr))
    {
@@ -9727,33 +9752,104 @@ addFkRecurseReferenced(List **wqueue, Constraint *fkconstraint, Relation rel,
                                      conislocal,   /* islocal */
                                      coninhcount,  /* inhcount */
                                      connoinherit, /* conNoInherit */
-                                     false);   /* is_internal */
+                                     is_internal); /* is_internal */
 
    ObjectAddressSet(address, ConstraintRelationId, constrOid);
 
    /*
-    * Mark the child constraint as part of the parent constraint; it must not
-    * be dropped on its own.  (This constraint is deleted when the partition
-    * is detached, but a special check needs to occur that the partition
-    * contains no referenced values.)
+    * In partitioning cases, create the dependency entries for this
+    * constraint.  (For non-partitioned cases, relevant entries were created
+    * by CreateConstraintEntry.)
+    *
+    * On the referenced side, we need the constraint to have an internal
+    * dependency on its parent constraint; this means that this constraint
+    * cannot be dropped on its own -- only through the parent constraint. It
+    * also means the containing partition cannot be dropped on its own, but
+    * it can be detached, at which point this dependency is removed (after
+    * verifying that no rows are referenced via this FK.)
+    *
+    * When processing the referencing side, we link the constraint via the
+    * special partitioning dependencies: the parent constraint is the primary
+    * dependent, and the partition on which the foreign key exists is the
+    * secondary dependency.  That way, this constraint is dropped if either
+    * of these objects is.
+    *
+    * Note that this is only necessary for the subsidiary pg_constraint rows
+    * in partitions; the topmost row doesn't need any of this.
     */
    if (OidIsValid(parentConstr))
    {
        ObjectAddress referenced;
 
        ObjectAddressSet(referenced, ConstraintRelationId, parentConstr);
-       recordDependencyOn(&address, &referenced, DEPENDENCY_INTERNAL);
+
+       Assert(fkside != addFkBothSides);
+       if (fkside == addFkReferencedSide)
+           recordDependencyOn(&address, &referenced, DEPENDENCY_INTERNAL);
+       else
+       {
+           recordDependencyOn(&address, &referenced, DEPENDENCY_PARTITION_PRI);
+           ObjectAddressSet(referenced, RelationRelationId, RelationGetRelid(rel));
+           recordDependencyOn(&address, &referenced, DEPENDENCY_PARTITION_SEC);
+       }
    }
 
    /* make new constraint visible, in case we add more */
    CommandCounterIncrement();
 
+   return address;
+}
+
+/*
+ * addFkRecurseReferenced
+ *     Recursive helper for the referenced side of foreign key creation,
+ *     which creates the action triggers and recurses
+ *
+ * If the referenced relation is a plain relation, create the necessary action
+ * triggers that implement the constraint.  If the referenced relation is a
+ * partitioned table, then we create a pg_constraint row referencing the parent
+ * of the referencing side for it and recurse on this routine for each
+ * partition.
+ *
+ * fkconstraint: the constraint being added
+ * rel: the root referencing relation
+ * pkrel: the referenced relation; might be a partition, if recursing
+ * indexOid: the OID of the index (on pkrel) implementing this constraint
+ * parentConstr: the OID of a parent constraint; InvalidOid if this is a
+ *      top-level constraint
+ * numfks: the number of columns in the foreign key
+ * pkattnum: the attnum array of referenced attributes
+ * fkattnum: the attnum array of referencing attributes
+ * numfkdelsetcols: the number of columns in the ON DELETE SET
+ *      NULL/DEFAULT (...) clause
+ * fkdelsetcols: the attnum array of the columns in the ON DELETE SET
+ *      NULL/DEFAULT clause
+ * pf/pp/ffeqoperators: OID array of operators between columns
+ * old_check_ok: true if this constraint replaces an existing one that
+ *      was already validated (thus this one doesn't need validation)
+ * parentDelTrigger and parentUpdTrigger: when recursively called on a
+ *      partition, the OIDs of the parent action triggers for DELETE and
+ *      UPDATE respectively.
+ */
+static void
+addFkRecurseReferenced(Constraint *fkconstraint, Relation rel,
+                      Relation pkrel, Oid indexOid, Oid parentConstr,
+                      int numfks,
+                      int16 *pkattnum, int16 *fkattnum, Oid *pfeqoperators,
+                      Oid *ppeqoperators, Oid *ffeqoperators,
+                      int numfkdelsetcols, int16 *fkdelsetcols,
+                      bool old_check_ok,
+                      Oid parentDelTrigger, Oid parentUpdTrigger)
+{
+   Oid         deleteTriggerOid,
+               updateTriggerOid;
+
    /*
     * Create the action triggers that enforce the constraint.
     */
    createForeignKeyActionTriggers(rel, RelationGetRelid(pkrel),
                                   fkconstraint,
-                                  constrOid, indexOid,
+                                  parentConstr, indexOid,
                                   parentDelTrigger, parentUpdTrigger,
                                   &deleteTriggerOid, &updateTriggerOid);
 
@@ -9772,6 +9868,7 @@ addFkRecurseReferenced(List **wqueue, Constraint *fkconstraint, Relation rel,
            AttrMap    *map;
            AttrNumber *mapped_pkattnum;
            Oid         partIndexId;
+           ObjectAddress address;
 
            partRel = table_open(pd->oids[i], ShareRowExclusiveLock);
 
@@ -9790,13 +9887,23 @@ addFkRecurseReferenced(List **wqueue, Constraint *fkconstraint, Relation rel,
            else
                mapped_pkattnum = pkattnum;
 
-           /* do the deed */
+           /* Determine the index to use at this level */
            partIndexId = index_get_partition(partRel, indexOid);
            if (!OidIsValid(partIndexId))
                elog(ERROR, "index for %u not found in partition %s",
                     indexOid, RelationGetRelationName(partRel));
-           addFkRecurseReferenced(wqueue, fkconstraint, rel, partRel,
-                                  partIndexId, constrOid, numfks,
+
+           /* Create entry at this level ... */
+           address = addFkConstraint(addFkReferencedSide,
+                                     fkconstraint->conname, fkconstraint, rel,
+                                     partRel, partIndexId, parentConstr,
+                                     numfks, mapped_pkattnum,
+                                     fkattnum, pfeqoperators, ppeqoperators,
+                                     ffeqoperators, numfkdelsetcols,
+                                     fkdelsetcols, true);
+           /* ... and recurse to our children */
+           addFkRecurseReferenced(fkconstraint, rel, partRel,
+                                  partIndexId, address.objectId, numfks,
                                   mapped_pkattnum, fkattnum,
                                   pfeqoperators, ppeqoperators, ffeqoperators,
                                   numfkdelsetcols, fkdelsetcols,
@@ -9812,13 +9919,12 @@ addFkRecurseReferenced(List **wqueue, Constraint *fkconstraint, Relation rel,
            }
        }
    }
-
-   return address;
 }
 
 /*
  * addFkRecurseReferencing
- *     subroutine for ATAddForeignKeyConstraint and CloneFkReferencing
+ *     Recursive helper for the referencing side of foreign key creation,
+ *     which creates the check triggers and recurses
  *
  * If the referencing relation is a plain relation, create the necessary check
  * triggers that implement the constraint, and set up for Phase 3 constraint
@@ -9830,27 +9936,27 @@ addFkRecurseReferenced(List **wqueue, Constraint *fkconstraint, Relation rel,
  * deletions.  If it's a partitioned relation, every partition must be so
  * locked.
  *
- * wqueue is the ALTER TABLE work queue; can be NULL when not running as part
- * of an ALTER TABLE sequence.
- * fkconstraint is the constraint being added.
- * rel is the referencing relation; might be a partition, if recursing.
- * pkrel is the root referenced relation.
- * indexOid is the OID of the index (on pkrel) implementing this constraint.
- * parentConstr is the OID of the parent constraint (there is always one).
- * numfks is the number of columns in the foreign key
- * pkattnum is the attnum array of referenced attributes.
- * fkattnum is the attnum array of referencing attributes.
- * pf/pp/ffeqoperators are OID array of operators between columns.
- * numfkdelsetcols is the number of columns in the ON DELETE SET NULL/DEFAULT
+ * wqueue: the ALTER TABLE work queue; NULL when not running as part
+ *      of an ALTER TABLE sequence.
+ * fkconstraint: the constraint being added
+ * rel: the referencing relation; might be a partition, if recursing
+ * pkrel: the root referenced relation
+ * indexOid: the OID of the index (on pkrel) implementing this constraint
+ * parentConstr: the OID of the parent constraint (there is always one)
+ * numfks: the number of columns in the foreign key
+ * pkattnum: the attnum array of referenced attributes
+ * fkattnum: the attnum array of referencing attributes
+ * pf/pp/ffeqoperators: OID array of operators between columns
+ * numfkdelsetcols: the number of columns in the ON DELETE SET NULL/DEFAULT
  *      (...) clause
- * fkdelsetcols is the attnum array of the columns in the ON DELETE SET
+ * fkdelsetcols: the attnum array of the columns in the ON DELETE SET
  *      NULL/DEFAULT clause
- * old_check_ok signals that this constraint replaces an existing one that
- *     was already validated (thus this one doesn't need validation).
- * lockmode is the lockmode to acquire on partitions when recursing.
- * parentInsTrigger and parentUpdTrigger, when being recursively called on
- * a partition, are the OIDs of the parent check triggers for INSERT and
- * UPDATE respectively.
+ * old_check_ok: true if this constraint replaces an existing one that
+ *      was already validated (thus this one doesn't need validation)
+ * lockmode: the lockmode to acquire on partitions when recursing
+ * parentInsTrigger and parentUpdTrigger: when being recursively called on
+ *      a partition, the OIDs of the parent check triggers for INSERT and
+ *      UPDATE respectively.
  */
 static void
 addFkRecurseReferencing(List **wqueue, Constraint *fkconstraint, Relation rel,
@@ -9938,10 +10044,7 @@ addFkRecurseReferencing(List **wqueue, Constraint *fkconstraint, Relation rel,
            AttrMap    *attmap;
            AttrNumber  mapped_fkattnum[INDEX_MAX_KEYS];
            bool        attached;
-           char       *conname;
-           Oid         constrOid;
-           ObjectAddress address,
-                       referenced;
+           ObjectAddress address;
            ListCell   *cell;
 
            CheckAlterTableIsSafe(partition);
@@ -9983,65 +10086,18 @@ addFkRecurseReferencing(List **wqueue, Constraint *fkconstraint, Relation rel,
            /*
             * No luck finding a good constraint to reuse; create our own.
             */
-           if (ConstraintNameIsUsed(CONSTRAINT_RELATION,
-                                    RelationGetRelid(partition),
-                                    fkconstraint->conname))
-               conname = ChooseConstraintName(RelationGetRelationName(partition),
-                                              ChooseForeignKeyConstraintNameAddition(fkconstraint->fk_attrs),
-                                              "fkey",
-                                              RelationGetNamespace(partition), NIL);
-           else
-               conname = fkconstraint->conname;
-           constrOid =
-               CreateConstraintEntry(conname,
-                                     RelationGetNamespace(partition),
-                                     CONSTRAINT_FOREIGN,
-                                     fkconstraint->deferrable,
-                                     fkconstraint->initdeferred,
-                                     fkconstraint->initially_valid,
-                                     parentConstr,
-                                     partitionId,
-                                     mapped_fkattnum,
-                                     numfks,
-                                     numfks,
-                                     InvalidOid,
-                                     indexOid,
-                                     RelationGetRelid(pkrel),
-                                     pkattnum,
-                                     pfeqoperators,
-                                     ppeqoperators,
-                                     ffeqoperators,
-                                     numfks,
-                                     fkconstraint->fk_upd_action,
-                                     fkconstraint->fk_del_action,
-                                     fkdelsetcols,
-                                     numfkdelsetcols,
-                                     fkconstraint->fk_matchtype,
-                                     NULL,
-                                     NULL,
-                                     NULL,
-                                     false,
-                                     1,
-                                     false,
-                                     false);
-
-           /*
-            * Give this constraint partition-type dependencies on the parent
-            * constraint as well as the table.
-            */
-           ObjectAddressSet(address, ConstraintRelationId, constrOid);
-           ObjectAddressSet(referenced, ConstraintRelationId, parentConstr);
-           recordDependencyOn(&address, &referenced, DEPENDENCY_PARTITION_PRI);
-           ObjectAddressSet(referenced, RelationRelationId, partitionId);
-           recordDependencyOn(&address, &referenced, DEPENDENCY_PARTITION_SEC);
-
-           /* Make all this visible before recursing */
-           CommandCounterIncrement();
+           address = addFkConstraint(addFkReferencingSide,
+                                     fkconstraint->conname, fkconstraint,
+                                     partition, pkrel, indexOid, parentConstr,
+                                     numfks, pkattnum,
+                                     mapped_fkattnum, pfeqoperators,
+                                     ppeqoperators, ffeqoperators,
+                                     numfkdelsetcols, fkdelsetcols, true);
 
            /* call ourselves to finalize the creation and we're done */
            addFkRecurseReferencing(wqueue, fkconstraint, partition, pkrel,
                                    indexOid,
-                                   constrOid,
+                                   address.objectId,
                                    numfks,
                                    pkattnum,
                                    mapped_fkattnum,
@@ -10173,6 +10229,7 @@ CloneFkReferenced(Relation parentRel, Relation partitionRel)
        int         numfkdelsetcols;
        AttrNumber  confdelsetcols[INDEX_MAX_KEYS];
        Constraint *fkconstraint;
+       ObjectAddress address;
        Oid         deleteTriggerOid,
                    updateTriggerOid;
 
@@ -10206,7 +10263,7 @@ CloneFkReferenced(Relation parentRel, Relation partitionRel)
         * Because we're only expanding the key space at the referenced side,
         * we don't need to prevent any operation in the referencing table, so
         * AccessShareLock suffices (assumes that dropping the constraint
-        * acquires AEL).
+        * acquires AccessExclusiveLock).
         */
        fkRel = table_open(constrForm->conrelid, AccessShareLock);
 
@@ -10272,12 +10329,19 @@ CloneFkReferenced(Relation parentRel, Relation partitionRel)
                                    constrForm->confrelid, constrForm->conrelid,
                                    &deleteTriggerOid, &updateTriggerOid);
 
-       addFkRecurseReferenced(NULL,
-                              fkconstraint,
+       /* Add this constraint ... */
+       address = addFkConstraint(addFkReferencedSide,
+                                 fkconstraint->conname, fkconstraint, fkRel,
+                                 partitionRel, partIndexId, constrOid,
+                                 numfks, mapped_confkey,
+                                 conkey, conpfeqop, conppeqop, conffeqop,
+                                 numfkdelsetcols, confdelsetcols, false);
+       /* ... and recurse */
+       addFkRecurseReferenced(fkconstraint,
                               fkRel,
                               partitionRel,
                               partIndexId,
-                              constrOid,
+                              address.objectId,
                               numfks,
                               mapped_confkey,
                               conkey,
@@ -10307,8 +10371,8 @@ CloneFkReferenced(Relation parentRel, Relation partitionRel)
  * child.
  *
  * If wqueue is given, it is used to set up phase-3 verification for each
- * cloned constraint; if omitted, we assume that such verification is not
- * needed (example: the partition is being created anew).
+ * cloned constraint; omit it if such verification is not needed
+ * (example: the partition is being created anew).
  */
 static void
 CloneFkReferencing(List **wqueue, Relation parentRel, Relation partRel)
@@ -10391,9 +10455,7 @@ CloneFkReferencing(List **wqueue, Relation parentRel, Relation partRel)
        Constraint *fkconstraint;
        bool        attached;
        Oid         indexOid;
-       Oid         constrOid;
-       ObjectAddress address,
-                   referenced;
+       ObjectAddress address;
        ListCell   *cell;
        Oid         insertTriggerOid,
                    updateTriggerOid;
@@ -10490,7 +10552,7 @@ CloneFkReferencing(List **wqueue, Relation parentRel, Relation partRel)
        fkconstraint->old_conpfeqop = NIL;
        fkconstraint->old_pktable_oid = InvalidOid;
        fkconstraint->skip_validation = false;
-       fkconstraint->initially_valid = true;
+       fkconstraint->initially_valid = constrForm->convalidated;
        for (int i = 0; i < numfks; i++)
        {
            Form_pg_attribute att;
@@ -10500,71 +10562,29 @@ CloneFkReferencing(List **wqueue, Relation parentRel, Relation partRel)
            fkconstraint->fk_attrs = lappend(fkconstraint->fk_attrs,
                                             makeString(NameStr(att->attname)));
        }
-       if (ConstraintNameIsUsed(CONSTRAINT_RELATION,
-                                RelationGetRelid(partRel),
-                                NameStr(constrForm->conname)))
-           fkconstraint->conname =
-               ChooseConstraintName(RelationGetRelationName(partRel),
-                                    ChooseForeignKeyConstraintNameAddition(fkconstraint->fk_attrs),
-                                    "fkey",
-                                    RelationGetNamespace(partRel), NIL);
-       else
-           fkconstraint->conname = pstrdup(NameStr(constrForm->conname));
 
        indexOid = constrForm->conindid;
-       constrOid =
-           CreateConstraintEntry(fkconstraint->conname,
-                                 constrForm->connamespace,
-                                 CONSTRAINT_FOREIGN,
-                                 fkconstraint->deferrable,
-                                 fkconstraint->initdeferred,
-                                 constrForm->convalidated,
-                                 parentConstrOid,
-                                 RelationGetRelid(partRel),
-                                 mapped_conkey,
-                                 numfks,
-                                 numfks,
-                                 InvalidOid,   /* not a domain constraint */
-                                 indexOid,
-                                 constrForm->confrelid,    /* same foreign rel */
-                                 confkey,
-                                 conpfeqop,
-                                 conppeqop,
-                                 conffeqop,
-                                 numfks,
-                                 fkconstraint->fk_upd_action,
-                                 fkconstraint->fk_del_action,
-                                 confdelsetcols,
-                                 numfkdelsetcols,
-                                 fkconstraint->fk_matchtype,
-                                 NULL,
-                                 NULL,
-                                 NULL,
-                                 false,    /* islocal */
-                                 1,    /* inhcount */
-                                 false,    /* conNoInherit */
-                                 true);
-
-       /* Set up partition dependencies for the new constraint */
-       ObjectAddressSet(address, ConstraintRelationId, constrOid);
-       ObjectAddressSet(referenced, ConstraintRelationId, parentConstrOid);
-       recordDependencyOn(&address, &referenced, DEPENDENCY_PARTITION_PRI);
-       ObjectAddressSet(referenced, RelationRelationId,
-                        RelationGetRelid(partRel));
-       recordDependencyOn(&address, &referenced, DEPENDENCY_PARTITION_SEC);
+
+       /* Create the pg_constraint entry at this level */
+       address = addFkConstraint(addFkReferencingSide,
+                                 NameStr(constrForm->conname), fkconstraint,
+                                 partRel, pkrel, indexOid, parentConstrOid,
+                                 numfks, confkey,
+                                 mapped_conkey, conpfeqop,
+                                 conppeqop, conffeqop,
+                                 numfkdelsetcols, confdelsetcols,
+                                 false);
 
        /* Done with the cloned constraint's tuple */
        ReleaseSysCache(tuple);
 
-       /* Make all this visible before recursing */
-       CommandCounterIncrement();
-
+       /* Create the check triggers, and recurse to partitions, if any */
        addFkRecurseReferencing(wqueue,
                                fkconstraint,
                                partRel,
                                pkrel,
                                indexOid,
-                               constrOid,
+                               address.objectId,
                                numfks,
                                confkey,
                                mapped_conkey,
@@ -10728,6 +10748,81 @@ tryAttachPartitionForeignKey(ForeignKeyCacheInfo *fk,
    TriggerSetParentTrigger(trigrel, updateTriggerOid, parentUpdTrigger,
                            partRelid);
 
+   /*
+    * If the referenced table is partitioned, then the partition we're
+    * attaching now has extra pg_constraint rows and action triggers that are
+    * no longer needed.  Remove those.
+    */
+   if (get_rel_relkind(fk->confrelid) == RELKIND_PARTITIONED_TABLE)
+   {
+       Relation    pg_constraint = table_open(ConstraintRelationId, RowShareLock);
+       ObjectAddresses *objs;
+       HeapTuple   consttup;
+
+       ScanKeyInit(&key,
+                   Anum_pg_constraint_conrelid,
+                   BTEqualStrategyNumber, F_OIDEQ,
+                   ObjectIdGetDatum(fk->conrelid));
+
+       scan = systable_beginscan(pg_constraint,
+                                 ConstraintRelidTypidNameIndexId,
+                                 true, NULL, 1, &key);
+       objs = new_object_addresses();
+       while ((consttup = systable_getnext(scan)) != NULL)
+       {
+           Form_pg_constraint conform = (Form_pg_constraint) GETSTRUCT(consttup);
+
+           if (conform->conparentid != fk->conoid)
+               continue;
+           else
+           {
+               ObjectAddress addr;
+               SysScanDesc scan2;
+               ScanKeyData key2;
+               int         n PG_USED_FOR_ASSERTS_ONLY;
+
+               ObjectAddressSet(addr, ConstraintRelationId, conform->oid);
+               add_exact_object_address(&addr, objs);
+
+               /*
+                * First we must delete the dependency record that binds the
+                * constraint records together.
+                */
+               n = deleteDependencyRecordsForSpecific(ConstraintRelationId,
+                                                      conform->oid,
+                                                      DEPENDENCY_INTERNAL,
+                                                      ConstraintRelationId,
+                                                      fk->conoid);
+               Assert(n == 1); /* actually only one is expected */
+
+               /*
+                * Now search for the triggers for this constraint and set
+                * them up for deletion too
+                */
+               ScanKeyInit(&key2,
+                           Anum_pg_trigger_tgconstraint,
+                           BTEqualStrategyNumber, F_OIDEQ,
+                           ObjectIdGetDatum(conform->oid));
+               scan2 = systable_beginscan(trigrel, TriggerConstraintIndexId,
+                                          true, NULL, 1, &key2);
+               while ((trigtup = systable_getnext(scan2)) != NULL)
+               {
+                   ObjectAddressSet(addr, TriggerRelationId,
+                                    ((Form_pg_trigger) GETSTRUCT(trigtup))->oid);
+                   add_exact_object_address(&addr, objs);
+               }
+               systable_endscan(scan2);
+           }
+       }
+       /* make the dependency deletions visible */
+       CommandCounterIncrement();
+       performMultipleDeletions(objs, DROP_RESTRICT,
+                                PERFORM_DELETION_INTERNAL);
+       systable_endscan(scan);
+
+       table_close(pg_constraint, RowShareLock);
+   }
+
    CommandCounterIncrement();
    return true;
 }
@@ -18727,9 +18822,9 @@ DetachPartitionFinalize(Relation rel, Relation partRel, bool concurrent,
    foreach(cell, fks)
    {
        ForeignKeyCacheInfo *fk = lfirst(cell);
-       HeapTuple   contup;
+       HeapTuple   contup,
+                   parentConTup;
        Form_pg_constraint conform;
-       Constraint *fkconstraint;
        Oid         insertTriggerOid,
                    updateTriggerOid;
 
@@ -18746,7 +18841,17 @@ DetachPartitionFinalize(Relation rel, Relation partRel, bool concurrent,
            continue;
        }
 
-       /* unset conparentid and adjust conislocal, coninhcount, etc. */
+       Assert(OidIsValid(conform->conparentid));
+       parentConTup = SearchSysCache1(CONSTROID,
+                                      ObjectIdGetDatum(conform->conparentid));
+       if (!HeapTupleIsValid(parentConTup))
+           elog(ERROR, "cache lookup failed for constraint %u",
+                conform->conparentid);
+
+       /*
+        * The constraint on this table must be marked no longer a child of
+        * the parent's constraint, as do its check triggers.
+        */
        ConstraintSetParentConstraint(fk->conoid, InvalidOid, InvalidOid);
 
        /*
@@ -18764,35 +18869,91 @@ DetachPartitionFinalize(Relation rel, Relation partRel, bool concurrent,
                                RelationGetRelid(partRel));
 
        /*
-        * Make the action triggers on the referenced relation.  When this was
-        * a partition the action triggers pointed to the parent rel (they
-        * still do), but now we need separate ones of our own.
+        * Lastly, create the action triggers on the referenced table, using
+        * addFkRecurseReferenced, which requires some elaborate setup (so put
+        * it in a separate block).  While at it, if the table is partitioned,
+        * that function will recurse to create the pg_constraint rows and
+        * action triggers for each partition.
+        *
+        * Note there's no need to do addFkConstraint() here, because the
+        * pg_constraint row already exists.
         */
-       fkconstraint = makeNode(Constraint);
-       fkconstraint->contype = CONSTRAINT_FOREIGN;
-       fkconstraint->conname = pstrdup(NameStr(conform->conname));
-       fkconstraint->deferrable = conform->condeferrable;
-       fkconstraint->initdeferred = conform->condeferred;
-       fkconstraint->location = -1;
-       fkconstraint->pktable = NULL;
-       fkconstraint->fk_attrs = NIL;
-       fkconstraint->pk_attrs = NIL;
-       fkconstraint->fk_matchtype = conform->confmatchtype;
-       fkconstraint->fk_upd_action = conform->confupdtype;
-       fkconstraint->fk_del_action = conform->confdeltype;
-       fkconstraint->fk_del_set_cols = NIL;
-       fkconstraint->old_conpfeqop = NIL;
-       fkconstraint->old_pktable_oid = InvalidOid;
-       fkconstraint->skip_validation = false;
-       fkconstraint->initially_valid = true;
+       {
+           Constraint *fkconstraint;
+           int         numfks;
+           AttrNumber  conkey[INDEX_MAX_KEYS];
+           AttrNumber  confkey[INDEX_MAX_KEYS];
+           Oid         conpfeqop[INDEX_MAX_KEYS];
+           Oid         conppeqop[INDEX_MAX_KEYS];
+           Oid         conffeqop[INDEX_MAX_KEYS];
+           int         numfkdelsetcols;
+           AttrNumber  confdelsetcols[INDEX_MAX_KEYS];
+           AttrMap    *attmap;
+           Relation    refdRel;
+
+           DeconstructFkConstraintRow(contup,
+                                      &numfks,
+                                      conkey,
+                                      confkey,
+                                      conpfeqop,
+                                      conppeqop,
+                                      conffeqop,
+                                      &numfkdelsetcols,
+                                      confdelsetcols);
+
+           /* Create a synthetic node we'll use throughout */
+           fkconstraint = makeNode(Constraint);
+           fkconstraint->contype = CONSTRAINT_FOREIGN;
+           fkconstraint->conname = pstrdup(NameStr(conform->conname));
+           fkconstraint->deferrable = conform->condeferrable;
+           fkconstraint->initdeferred = conform->condeferred;
+           fkconstraint->skip_validation = true;
+           fkconstraint->initially_valid = true;
+           /* a few irrelevant fields omitted here */
+           fkconstraint->pktable = NULL;
+           fkconstraint->fk_attrs = NIL;
+           fkconstraint->pk_attrs = NIL;
+           fkconstraint->fk_matchtype = conform->confmatchtype;
+           fkconstraint->fk_upd_action = conform->confupdtype;
+           fkconstraint->fk_del_action = conform->confdeltype;
+           fkconstraint->fk_del_set_cols = NIL;
+           fkconstraint->old_conpfeqop = NIL;
+           fkconstraint->old_pktable_oid = InvalidOid;
+           fkconstraint->location = -1;
+
+           attmap = build_attrmap_by_name(RelationGetDescr(partRel),
+                                          RelationGetDescr(rel));
+           for (int i = 0; i < numfks; i++)
+           {
+               Form_pg_attribute att;
 
-       createForeignKeyActionTriggers(partRel, conform->confrelid,
-                                      fkconstraint, fk->conoid,
-                                      conform->conindid,
-                                      InvalidOid, InvalidOid,
-                                      NULL, NULL);
+               att = TupleDescAttr(RelationGetDescr(partRel),
+                                   attmap->attnums[conkey[i] - 1] - 1);
+               fkconstraint->fk_attrs = lappend(fkconstraint->fk_attrs,
+                                                makeString(NameStr(att->attname)));
+           }
+
+           refdRel = table_open(fk->confrelid, AccessShareLock);
+
+           addFkRecurseReferenced(fkconstraint, partRel,
+                                  refdRel,
+                                  conform->conindid,
+                                  fk->conoid,
+                                  numfks,
+                                  confkey,
+                                  conkey,
+                                  conpfeqop,
+                                  conppeqop,
+                                  conffeqop,
+                                  numfkdelsetcols,
+                                  confdelsetcols,
+                                  true,
+                                  InvalidOid, InvalidOid);
+           table_close(refdRel, AccessShareLock);
+       }
 
        ReleaseSysCache(contup);
+       ReleaseSysCache(parentConTup);
    }
    list_free_deep(fks);
    if (trigrel)
index 5f4d6f84edf79d12090e98f012a616d1c8223b63..02cf78ee26a3661fd7c4ac426cfa71bec8db1faa 100644 (file)
@@ -2934,3 +2934,99 @@ DETAIL:  drop cascades to table fkpart11.pk
 drop cascades to table fkpart11.fk_parted
 drop cascades to table fkpart11.fk_another
 drop cascades to function fkpart11.print_row()
+-- When a table is attached as partition to a partitioned table that has
+-- a foreign key to another partitioned table, it acquires a clone of the
+-- FK.  Upon detach, this clone is not removed, but instead becomes an
+-- independent FK.  If it then attaches to the partitioned table again,
+-- the FK from the parent "takes over" ownership of the independent FK rather
+-- than creating a separate one.
+CREATE SCHEMA fkpart12
+  CREATE TABLE fk_p ( id int, jd int, PRIMARY KEY(id, jd)) PARTITION BY list (id)
+  CREATE TABLE fk_p_1 PARTITION OF fk_p FOR VALUES IN (1) PARTITION BY list (jd)
+  CREATE TABLE fk_p_1_1 PARTITION OF fk_p_1 FOR VALUES IN (1)
+  CREATE TABLE fk_p_1_2 PARTITION OF fk_p_1 FOR VALUES IN (2)
+  CREATE TABLE fk_p_2 PARTITION OF fk_p FOR VALUES IN (2) PARTITION BY list (jd)
+  CREATE TABLE fk_p_2_1 PARTITION OF fk_p_2 FOR VALUES IN (1)
+  CREATE TABLE fk_p_2_2 PARTITION OF fk_p_2 FOR VALUES IN (2)
+  CREATE TABLE fk_r_1 ( id int PRIMARY KEY, p_id int NOT NULL, p_jd int NOT NULL)
+  CREATE TABLE fk_r_2 ( id int PRIMARY KEY, p_id int NOT NULL, p_jd int NOT NULL) PARTITION BY list (id)
+  CREATE TABLE fk_r_2_1 PARTITION OF fk_r_2 FOR VALUES IN (2, 1)
+  CREATE TABLE fk_r   ( id int PRIMARY KEY, p_id int NOT NULL, p_jd int NOT NULL,
+       FOREIGN KEY (p_id, p_jd) REFERENCES fk_p (id, jd)
+  ) PARTITION BY list (id);
+SET search_path TO fkpart12;
+INSERT INTO fk_p VALUES (1, 1);
+ALTER TABLE fk_r ATTACH PARTITION fk_r_1 FOR VALUES IN (1);
+ALTER TABLE fk_r ATTACH PARTITION fk_r_2 FOR VALUES IN (2);
+\d fk_r_2
+        Partitioned table "fkpart12.fk_r_2"
+ Column |  Type   | Collation | Nullable | Default 
+--------+---------+-----------+----------+---------
+ id     | integer |           | not null | 
+ p_id   | integer |           | not null | 
+ p_jd   | integer |           | not null | 
+Partition of: fk_r FOR VALUES IN (2)
+Partition key: LIST (id)
+Indexes:
+    "fk_r_2_pkey" PRIMARY KEY, btree (id)
+Foreign-key constraints:
+    TABLE "fk_r" CONSTRAINT "fk_r_p_id_p_jd_fkey" FOREIGN KEY (p_id, p_jd) REFERENCES fk_p(id, jd)
+Number of partitions: 1 (Use \d+ to list them.)
+
+INSERT INTO fk_r VALUES (1, 1, 1);
+INSERT INTO fk_r VALUES (2, 2, 1);
+ERROR:  insert or update on table "fk_r_2_1" violates foreign key constraint "fk_r_p_id_p_jd_fkey"
+DETAIL:  Key (p_id, p_jd)=(2, 1) is not present in table "fk_p".
+ALTER TABLE fk_r DETACH PARTITION fk_r_1;
+ALTER TABLE fk_r DETACH PARTITION fk_r_2;
+\d fk_r_2
+        Partitioned table "fkpart12.fk_r_2"
+ Column |  Type   | Collation | Nullable | Default 
+--------+---------+-----------+----------+---------
+ id     | integer |           | not null | 
+ p_id   | integer |           | not null | 
+ p_jd   | integer |           | not null | 
+Partition key: LIST (id)
+Indexes:
+    "fk_r_2_pkey" PRIMARY KEY, btree (id)
+Foreign-key constraints:
+    "fk_r_p_id_p_jd_fkey" FOREIGN KEY (p_id, p_jd) REFERENCES fk_p(id, jd)
+Number of partitions: 1 (Use \d+ to list them.)
+
+INSERT INTO fk_r_1 VALUES (2, 1, 2); -- should fail
+ERROR:  insert or update on table "fk_r_1" violates foreign key constraint "fk_r_p_id_p_jd_fkey"
+DETAIL:  Key (p_id, p_jd)=(1, 2) is not present in table "fk_p".
+DELETE FROM fk_p; -- should fail
+ERROR:  update or delete on table "fk_p_1_1" violates foreign key constraint "fk_r_1_p_id_p_jd_fkey1" on table "fk_r_1"
+DETAIL:  Key (id, jd)=(1, 1) is still referenced from table "fk_r_1".
+ALTER TABLE fk_r ATTACH PARTITION fk_r_1 FOR VALUES IN (1);
+ALTER TABLE fk_r ATTACH PARTITION fk_r_2 FOR VALUES IN (2);
+\d fk_r_2
+        Partitioned table "fkpart12.fk_r_2"
+ Column |  Type   | Collation | Nullable | Default 
+--------+---------+-----------+----------+---------
+ id     | integer |           | not null | 
+ p_id   | integer |           | not null | 
+ p_jd   | integer |           | not null | 
+Partition of: fk_r FOR VALUES IN (2)
+Partition key: LIST (id)
+Indexes:
+    "fk_r_2_pkey" PRIMARY KEY, btree (id)
+Foreign-key constraints:
+    TABLE "fk_r" CONSTRAINT "fk_r_p_id_p_jd_fkey" FOREIGN KEY (p_id, p_jd) REFERENCES fk_p(id, jd)
+Number of partitions: 1 (Use \d+ to list them.)
+
+DELETE FROM fk_p; -- should fail
+ERROR:  update or delete on table "fk_p_1_1" violates foreign key constraint "fk_r_p_id_p_jd_fkey2" on table "fk_r"
+DETAIL:  Key (id, jd)=(1, 1) is still referenced from table "fk_r".
+-- these should all fail
+ALTER TABLE fk_r_1 DROP CONSTRAINT fk_r_p_id_p_jd_fkey;
+ERROR:  cannot drop inherited constraint "fk_r_p_id_p_jd_fkey" of relation "fk_r_1"
+ALTER TABLE fk_r DROP CONSTRAINT fk_r_p_id_p_jd_fkey1;
+ERROR:  cannot drop inherited constraint "fk_r_p_id_p_jd_fkey1" of relation "fk_r"
+ALTER TABLE fk_r_2 DROP CONSTRAINT fk_r_p_id_p_jd_fkey;
+ERROR:  cannot drop inherited constraint "fk_r_p_id_p_jd_fkey" of relation "fk_r_2"
+SET client_min_messages TO warning;
+DROP SCHEMA fkpart12 CASCADE;
+RESET client_min_messages;
+RESET search_path;
index bb39c9719a9fa7d4cea99b529164b9b556b86509..9f424f2e143decc33831b9d28a471c3c2a48b2e3 100644 (file)
@@ -2086,3 +2086,60 @@ UPDATE fkpart11.pk SET a = 3 WHERE a = 4;
 UPDATE fkpart11.pk SET a = 1 WHERE a = 2;
 
 DROP SCHEMA fkpart11 CASCADE;
+
+-- When a table is attached as partition to a partitioned table that has
+-- a foreign key to another partitioned table, it acquires a clone of the
+-- FK.  Upon detach, this clone is not removed, but instead becomes an
+-- independent FK.  If it then attaches to the partitioned table again,
+-- the FK from the parent "takes over" ownership of the independent FK rather
+-- than creating a separate one.
+CREATE SCHEMA fkpart12
+  CREATE TABLE fk_p ( id int, jd int, PRIMARY KEY(id, jd)) PARTITION BY list (id)
+  CREATE TABLE fk_p_1 PARTITION OF fk_p FOR VALUES IN (1) PARTITION BY list (jd)
+  CREATE TABLE fk_p_1_1 PARTITION OF fk_p_1 FOR VALUES IN (1)
+  CREATE TABLE fk_p_1_2 PARTITION OF fk_p_1 FOR VALUES IN (2)
+  CREATE TABLE fk_p_2 PARTITION OF fk_p FOR VALUES IN (2) PARTITION BY list (jd)
+  CREATE TABLE fk_p_2_1 PARTITION OF fk_p_2 FOR VALUES IN (1)
+  CREATE TABLE fk_p_2_2 PARTITION OF fk_p_2 FOR VALUES IN (2)
+  CREATE TABLE fk_r_1 ( id int PRIMARY KEY, p_id int NOT NULL, p_jd int NOT NULL)
+  CREATE TABLE fk_r_2 ( id int PRIMARY KEY, p_id int NOT NULL, p_jd int NOT NULL) PARTITION BY list (id)
+  CREATE TABLE fk_r_2_1 PARTITION OF fk_r_2 FOR VALUES IN (2, 1)
+  CREATE TABLE fk_r   ( id int PRIMARY KEY, p_id int NOT NULL, p_jd int NOT NULL,
+       FOREIGN KEY (p_id, p_jd) REFERENCES fk_p (id, jd)
+  ) PARTITION BY list (id);
+SET search_path TO fkpart12;
+
+INSERT INTO fk_p VALUES (1, 1);
+
+ALTER TABLE fk_r ATTACH PARTITION fk_r_1 FOR VALUES IN (1);
+ALTER TABLE fk_r ATTACH PARTITION fk_r_2 FOR VALUES IN (2);
+
+\d fk_r_2
+
+INSERT INTO fk_r VALUES (1, 1, 1);
+INSERT INTO fk_r VALUES (2, 2, 1);
+
+ALTER TABLE fk_r DETACH PARTITION fk_r_1;
+ALTER TABLE fk_r DETACH PARTITION fk_r_2;
+
+\d fk_r_2
+
+INSERT INTO fk_r_1 VALUES (2, 1, 2); -- should fail
+DELETE FROM fk_p; -- should fail
+
+ALTER TABLE fk_r ATTACH PARTITION fk_r_1 FOR VALUES IN (1);
+ALTER TABLE fk_r ATTACH PARTITION fk_r_2 FOR VALUES IN (2);
+
+\d fk_r_2
+
+DELETE FROM fk_p; -- should fail
+
+-- these should all fail
+ALTER TABLE fk_r_1 DROP CONSTRAINT fk_r_p_id_p_jd_fkey;
+ALTER TABLE fk_r DROP CONSTRAINT fk_r_p_id_p_jd_fkey1;
+ALTER TABLE fk_r_2 DROP CONSTRAINT fk_r_p_id_p_jd_fkey;
+
+SET client_min_messages TO warning;
+DROP SCHEMA fkpart12 CASCADE;
+RESET client_min_messages;
+RESET search_path;
index e4dbc4359677051fea01b55b62c6e65829d6208d..387f2234243a6cb7d65949f5767ef1124609df48 100644 (file)
@@ -3075,6 +3075,7 @@ _locale_t
 _resultmap
 _stringlist
 acquireLocksOnSubLinks_context
+addFkConstraintSides
 adjust_appendrel_attrs_context
 aff_regex_struct
 allocfunc