Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera2020-03-20 21:11:28 +0000
committerAlvaro Herrera2020-03-20 21:13:12 +0000
commit069b750ca764a85324a138c22c3ece5cf13d684f (patch)
treeaabf8512ccf1129035e4b9a9ae24f47b29400370
parent4e62091341b4a55666a32dd7762f185a1faa54f7 (diff)
Fix bogus last-minute edit in 4e62091341b4
Noticed by Erik Rijkers before I was able to push the fix.
-rw-r--r--src/bin/pg_dump/pg_dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c
index 812907b88a8..959b36a95c2 100644
--- a/src/bin/pg_dump/pg_dump.c
+++ b/src/bin/pg_dump/pg_dump.c
@@ -17466,7 +17466,7 @@ dumpTrigger(Archive *fout, TriggerInfo *tginfo)
if (tginfo->tgenabled != 't' && tginfo->tgenabled != 'O')
{
- appendPQExpBuffer(query, "\nALTER %sTABLE %s ", foreign,
+ appendPQExpBuffer(query, "\nALTER %sTABLE %s ",
tbinfo->relkind == RELKIND_FOREIGN_TABLE ? "FOREIGN " : "",
fmtQualifiedDumpable(tbinfo));
switch (tginfo->tgenabled)