duplicated comments on get_relation_constraints - Mailing list pgsql-hackers

From jian he
Subject duplicated comments on get_relation_constraints
Date
Msg-id CACJufxETi6x86S8EkH8mRfOcm2AenoE9t1pyCFVMpU34gVhF3w@mail.gmail.com
Whole thread Raw
Responses Re: duplicated comments on get_relation_constraints
List pgsql-hackers
hi.

in plancat.c, function: get_relation_constraints

```
for (i = 0; i < num_check; i++)
{
    Node       *cexpr;
    /*
      * If this constraint hasn't been fully validated yet, we must
      * ignore it here.  Also ignore if NO INHERIT and we weren't told
      * that that's safe.
      */
    if (!constr->check[i].ccvalid)
      continue;

    /*
      * NOT ENFORCED constraints are always marked as invalid, which
      * should have been ignored.
      */
    Assert(constr->check[i].ccenforced);

    /*
      * Also ignore if NO INHERIT and we weren't told that that's safe.
      */
    if (constr->check[i].ccnoinherit && !include_noinherit)
      continue;
}
``

The first "Also ignore if NO INHERIT and we weren't told that that's
safe." is duplicated,
also it's in the wrong place?
The second one is fine.



pgsql-hackers by date:

Previous
From: Michael Paquier
Date:
Subject: Re: Sequence Access Methods, round two
Next
From: Jeff Davis
Date:
Subject: Re: Statistics import and export: difference in statistics of materialized view dumped