Skip to content

Commit

Permalink
Remove support for v9.5.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jeevanchalke committed Feb 26, 2021
1 parent 3722d58 commit 14c602c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
------------
Expand Down

0 comments on commit 14c602c

Please sign in to comment.