mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-09 08:10:09 +08:00
Fix event trigger example
Commit 2f9661311b
changed command tags from strings to numbers, but
forgot to adjust the code in the event trigger example, which
consequently failed to compile.
While fixing that, improve the indentation to adhere to pgindent style.
Backpatch to v13, where the change was introduced.
Author: Laurenz Albe
Discussion: https://postgr.es/m/81e36ac17dc80489e74dc5b6914afa6ccdb1a99d.camel@cybertec.at
This commit is contained in:
parent
bbfdf7180d
commit
7a310338f4
@ -1195,7 +1195,8 @@ noddl(PG_FUNCTION_ARGS)
|
||||
|
||||
ereport(ERROR,
|
||||
(errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
|
||||
errmsg("command \"%s\" denied", trigdata->tag)));
|
||||
errmsg("command \"%s\" denied",
|
||||
GetCommandTagName(trigdata->tag))));
|
||||
|
||||
PG_RETURN_NULL();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user