]> granicus.if.org Git - postgresql/commitdiff
Fix a couple other leftover uses of 'conisonly' terminology.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 12 Sep 2012 19:12:24 +0000 (15:12 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 12 Sep 2012 19:12:24 +0000 (15:12 -0400)
src/backend/commands/typecmds.c
src/include/catalog/pg_constraint.h

index 88e4287492d89ad2e33879e4465959c96a637798..4c9d00386cbb4fbcfd4ea2295e7e887f6b2e3187 100644 (file)
@@ -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
index fc048ea751085ceea9de43157a321a8bad180ef6..9a1c8906843778c075a0c07de16bc592d4e58889 100644 (file)
@@ -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);