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_11_14~30 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=58955c84f365ac629bc8a17931dc2ae45e35154c;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 975a16baf5d..542e8af4673 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -7673,6 +7673,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 "