From 123f4ec94c4710e09c7bd363c45fb840f705155a Mon Sep 17 00:00:00 2001 From: Ashutosh Bapat Date: Mon, 8 Jul 2024 18:45:50 +0530 Subject: [PATCH 4/6] Fix compilation error After 6e1c4a03a978ed3574124d8f2be22ba2e5a4b1e9 binary_upgrade_set_pg_class_oid() doesn't need the last argument. Fix the call. --- src/bin/pg_dump/pg_dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 5e6adcdb36..dba3a1a648 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -15743,7 +15743,7 @@ dumpTableSchema(Archive *fout, const TableInfo *tbinfo) if (dopt->binary_upgrade) binary_upgrade_set_pg_class_oids(fout, q, - tbinfo->dobj.catId.oid, false); + tbinfo->dobj.catId.oid); appendPQExpBuffer(query, "SELECT pg_catalog.pg_get_propgraphdef('%u'::pg_catalog.oid) AS pgdef", -- 2.34.1