mirror of
https://github.com/postgres/postgres.git
synced 2026-03-29 13:53:46 -04:00
Don't emit a spurious space at end of line in pg_dump of event triggers.
Backpatch to 9.3 and above, where event triggers were added.
This commit is contained in:
parent
f92d6a540a
commit
7b156c1e07
1 changed files with 1 additions and 2 deletions
|
|
@ -15277,13 +15277,12 @@ dumpEventTrigger(Archive *fout, DumpOptions *dopt, EventTriggerInfo *evtinfo)
|
|||
appendPQExpBufferStr(query, fmtId(evtinfo->dobj.name));
|
||||
appendPQExpBufferStr(query, " ON ");
|
||||
appendPQExpBufferStr(query, fmtId(evtinfo->evtevent));
|
||||
appendPQExpBufferStr(query, " ");
|
||||
|
||||
if (strcmp("", evtinfo->evttags) != 0)
|
||||
{
|
||||
appendPQExpBufferStr(query, "\n WHEN TAG IN (");
|
||||
appendPQExpBufferStr(query, evtinfo->evttags);
|
||||
appendPQExpBufferStr(query, ") ");
|
||||
appendPQExpBufferChar(query, ')');
|
||||
}
|
||||
|
||||
appendPQExpBufferStr(query, "\n EXECUTE PROCEDURE ");
|
||||
|
|
|
|||
Loading…
Reference in a new issue