Fix a couple other leftover uses of 'conisonly' terminology.

pull/3/head
Tom Lane 13 years ago
parent 7c328a9b04
commit 9a93e71008
  1. 2
      src/backend/commands/typecmds.c
  2. 2
      src/include/catalog/pg_constraint.h

@ -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

@ -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);

Loading…
Cancel
Save