From 14c602cc5a7fd46c98d59c3b90b140adea4d566c Mon Sep 17 00:00:00 2001 From: Jeevan Chalke Date: Fri, 26 Feb 2021 16:27:46 +0530 Subject: [PATCH] Remove support for v9.5. Standard Support for both EDB Postgres Advanced Server 9.5 and PostgreSQL 9.5 ended in February 2021. Adjust Makefile so that we restrict compilation of mysql_fdw code against v9.5. Update the README accordingly. Suraj Kharage --- Makefile | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 23e0178..dd7a0a3 100644 --- a/Makefile +++ b/Makefile @@ -40,8 +40,8 @@ include $(PGXS) ifndef MAJORVERSION MAJORVERSION := $(basename $(VERSION)) endif -ifeq (,$(findstring $(MAJORVERSION), 9.5 9.6 10 11 12 13)) -$(error PostgreSQL 9.5, 9.6, 10, 11, 12, or 13 is required to compile this extension) +ifeq (,$(findstring $(MAJORVERSION), 9.6 10 11 12 13)) +$(error PostgreSQL 9.6, 10, 11, 12, or 13 is required to compile this extension) endif else diff --git a/README.md b/README.md index 415875a..8c2917d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ This PostgreSQL extension implements a Foreign Data Wrapper (FDW) for [MySQL][1]. Please note that this version of mysql_fdw works with PostgreSQL and EDB -Postgres Advanced Server 9.5, 9.6, 10, 11, 12, and 13. +Postgres Advanced Server 9.6, 10, 11, 12, and 13. Installation ------------