From: Tom Lane Date: Wed, 12 Sep 2012 19:12:24 +0000 (-0400) Subject: Fix a couple other leftover uses of 'conisonly' terminology. X-Git-Tag: REL9_3_BETA1~913 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9a93e7100866c717ca2f43af48dbd1c3755a9a62;p=postgresql Fix a couple other leftover uses of 'conisonly' terminology. --- diff --git a/src/backend/commands/typecmds.c b/src/backend/commands/typecmds.c index 88e4287492..4c9d00386c 100644 --- a/src/backend/commands/typecmds.c +++ b/src/backend/commands/typecmds.c @@ -2939,7 +2939,7 @@ domainAddConstraint(Oid domainOid, Oid domainNamespace, Oid baseTypeOid, ccsrc, /* Source form of check constraint */ true, /* is local */ 0, /* inhcount */ - false); /* is only */ + false); /* connoinherit */ /* * Return the compiled constraint expression so the calling routine can diff --git a/src/include/catalog/pg_constraint.h b/src/include/catalog/pg_constraint.h index fc048ea751..9a1c890684 100644 --- a/src/include/catalog/pg_constraint.h +++ b/src/include/catalog/pg_constraint.h @@ -231,7 +231,7 @@ extern Oid CreateConstraintEntry(const char *constraintName, const char *conSrc, bool conIsLocal, int conInhCount, - bool conIsOnly); + bool conNoInherit); extern void RemoveConstraintById(Oid conId); extern void RenameConstraintById(Oid conId, const char *newname);