@@ -10911,7 +10911,7 @@ ATExecAlterConstraint(Relation rel, AlterTableCmd *cmd, bool recurse,
10911
10911
ancestorname && ancestortable ?
10912
10912
errdetail("Constraint \"%s\" is derived from constraint \"%s\" of relation \"%s\".",
10913
10913
cmdcon->conname, ancestorname, ancestortable) : 0,
10914
- errhint("You may alter the constraint it derives from, instead.")));
10914
+ errhint("You may alter the constraint it derives from instead.")));
10915
10915
}
10916
10916
10917
10917
/*
@@ -13860,7 +13860,7 @@ ATExecChangeOwner(Oid relationOid, Oid newOwnerId, bool recursing, LOCKMODE lock
13860
13860
(errcode(ERRCODE_WRONG_OBJECT_TYPE),
13861
13861
errmsg("cannot change owner of index \"%s\"",
13862
13862
NameStr(tuple_class->relname)),
13863
- errhint("Change the ownership of the index's table, instead.")));
13863
+ errhint("Change the ownership of the index's table instead.")));
13864
13864
/* quick hack to exit via the no-op path */
13865
13865
newOwnerId = tuple_class->relowner;
13866
13866
}
@@ -13872,7 +13872,7 @@ ATExecChangeOwner(Oid relationOid, Oid newOwnerId, bool recursing, LOCKMODE lock
13872
13872
(errcode(ERRCODE_WRONG_OBJECT_TYPE),
13873
13873
errmsg("cannot change owner of index \"%s\"",
13874
13874
NameStr(tuple_class->relname)),
13875
- errhint("Change the ownership of the index's table, instead.")));
13875
+ errhint("Change the ownership of the index's table instead.")));
13876
13876
break;
13877
13877
case RELKIND_SEQUENCE:
13878
13878
if (!recursing &&
0 commit comments