]> granicus.if.org Git - postgresql/commit
Un-break pg_dump for pre-8.3 source servers.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 13 Aug 2019 20:57:59 +0000 (16:57 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 13 Aug 2019 20:57:59 +0000 (16:57 -0400)
commitc56858487a01e0471936a4d70ba5f611676d9d0e
tree8e07ab12cd0847cfef23d12361539af3aef93d48
parent72bdf0f9e4418f49c76743b860fcc471539bc770
Un-break pg_dump for pre-8.3 source servers.

Commit 07b39083c inserted an unconditional reference to pg_opfamily,
which of course fails on servers predating that catalog.  Fortunately,
the case it's trying to solve can't occur on such old servers (AFAIK).
Hence, just skip the additional code when the source predates 8.3.

Per bug #15955 from sly.  Back-patch to all supported branches,
like the previous patch.

Discussion: https://postgr.es/m/15955-1daa2e676e903d87@postgresql.org
src/bin/pg_dump/pg_dump.c