1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

Remove quotes around SQL statement in error message

This commit is contained in:
Alvaro Herrera
2013-04-11 12:00:09 -03:00
parent 6a76edb188
commit 6cd18a88b6
2 changed files with 2 additions and 2 deletions

View File

@ -231,7 +231,7 @@ validate_ddl_tags(const char *filtervar, List *taglist)
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
/* translator: %s represents an SQL statement name */
errmsg("event triggers are not supported for \"%s\"",
errmsg("event triggers are not supported for %s",
tag)));
}
}