mirror of
https://github.com/postgres/postgres.git
synced 2026-07-13 11:50:50 -04:00
Remove quotes around format_type_be() output
format_type_be() takes care of any needed quoting itself.
This commit is contained in:
parent
f26c9896b3
commit
89dda5f297
1 changed files with 1 additions and 1 deletions
|
|
@ -653,7 +653,7 @@ RenameConstraintById(Oid conId, const char *newname)
|
|||
newname))
|
||||
ereport(ERROR,
|
||||
(errcode(ERRCODE_DUPLICATE_OBJECT),
|
||||
errmsg("constraint \"%s\" for domain \"%s\" already exists",
|
||||
errmsg("constraint \"%s\" for domain %s already exists",
|
||||
newname, format_type_be(con->contypid))));
|
||||
|
||||
/* OK, do the rename --- tuple is a copy, so OK to scribble on it */
|
||||
|
|
|
|||
Loading…
Reference in a new issue