pgsql: Add missing include to pg_upgrade/version.c

From: Tomas Vondra <tomas(dot)vondra(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Add missing include to pg_upgrade/version.c
Date: 2019-10-16 14:32:21
Message-ID: E1iKkLd-0004u5-VB@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add missing include to pg_upgrade/version.c

Commit 8d48e6a724 uses RELKIND_ constants when building the query, but
did not include the header defining them. On 10+ this header is already
included, but on 9.6 and earlier it was missing. It compiles just fine,
but then fails during execution

ERROR: column "relkind_relation" does not exist

Fix by adding the necessary header file, and backpatch to 9.4-.

Backpatch-to: 9.4-
Discussion: https://postgr.es/m/16045-673e8fa6b5ace196%40postgresql.org

Branch
------
REL9_4_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/bc3a94dc00059955aeb611d611d064faf66dc2f8

Modified Files
--------------
contrib/pg_upgrade/version.c | 2 ++
1 file changed, 2 insertions(+)

Browse pgsql-committers by date

  From Date Subject
Next Message Thomas Munro 2019-10-16 23:00:02 pgsql: Fix bug that could try to freeze running multixacts.
Previous Message Tomas Vondra 2019-10-16 14:32:11 pgsql: Add missing include to pg_upgrade/version.c