1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-06 19:59:18 +03:00

Fix bogus last-minute edit in 4e62091341b4

Noticed by Erik Rijkers before I was able to push the fix.
This commit is contained in:
Alvaro Herrera 2020-03-20 18:11:28 -03:00
parent 4e62091341
commit 069b750ca7
No known key found for this signature in database
GPG Key ID: 1C20ACB9D5C564AE

View File

@ -17466,7 +17466,7 @@ dumpTrigger(Archive *fout, TriggerInfo *tginfo)
if (tginfo->tgenabled != 't' && tginfo->tgenabled != 'O') if (tginfo->tgenabled != 't' && tginfo->tgenabled != 'O')
{ {
appendPQExpBuffer(query, "\nALTER %sTABLE %s ", foreign, appendPQExpBuffer(query, "\nALTER %sTABLE %s ",
tbinfo->relkind == RELKIND_FOREIGN_TABLE ? "FOREIGN " : "", tbinfo->relkind == RELKIND_FOREIGN_TABLE ? "FOREIGN " : "",
fmtQualifiedDumpable(tbinfo)); fmtQualifiedDumpable(tbinfo));
switch (tginfo->tgenabled) switch (tginfo->tgenabled)