From a2f9219e7053bf2395c50b198379d1073dbc2298 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Wed, 13 Apr 2011 00:39:19 -0400 Subject: [PATCH] Fix broken pg_dump query. The 8.4 branch failed when talking to 7.0 servers. Per testing requested by Bruce. --- src/bin/pg_dump/pg_dump.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index c5057f7e47..ccbc1d8b9e 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -3415,6 +3415,8 @@ getTables(int *numTables) "relhasindex, relhasrules, " "'t'::bool AS relhasoids, " "0 as relfrozenxid, " + "0 AS toid, " + "0 AS tfrozenxid, " "NULL::oid AS owning_tab, " "NULL::int4 AS owning_col, " "NULL AS reltablespace, "