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_2_1~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=819c4129ca39a478700eb1db3c1fb6f2aaedab79;p=thirdparty%2Fpostgresql.git Fix a couple other leftover uses of 'conisonly' terminology. --- diff --git a/src/backend/commands/typecmds.c b/src/backend/commands/typecmds.c index 353043d581a..4bc6358cadd 100644 --- a/src/backend/commands/typecmds.c +++ b/src/backend/commands/typecmds.c @@ -2961,7 +2961,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 b9e4bf41f93..9cc7bf7c260 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);