From: Tom Lane Date: Sat, 16 Oct 2021 19:02:55 +0000 (-0400) Subject: Avoid core dump in pg_dump when dumping from pre-8.3 server. X-Git-Tag: REL_15_BETA1~1346 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=40dfac4fc4776213a02291f13046d36e318f2629;p=thirdparty%2Fpostgresql.git Avoid core dump in pg_dump when dumping from pre-8.3 server. Commit f0e21f2f6 missed adding a tgisinternal output column to getTriggers' query for pre-8.3 servers. Back-patch to v11, like that commit. --- diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 5deb347f343..6ec524f8e66 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -8082,6 +8082,7 @@ getTriggers(Archive *fout, TableInfo tblinfo[], int numTables) "SELECT tgname, " "tgfoid::pg_catalog.regproc AS tgfname, " "tgtype, tgnargs, tgargs, tgenabled, " + "false as tgisinternal, " "tgisconstraint, tgconstrname, tgdeferrable, " "tgconstrrelid, tginitdeferred, tableoid, oid, " "tgconstrrelid::pg_catalog.regclass AS tgconstrrelname "