Skip to content

Commit

Permalink
Add support for PostgreSQL 17 and EDB Postgres Advanced Server 17.
Browse files Browse the repository at this point in the history
Code changes involve adjusting calls to some server-side functions
due to their signature changes.

FDW-682, Suraj Kharage, reviewed by Jeevan Chalke.
  • Loading branch information
jeevanchalke committed Jun 24, 2024
1 parent d07ef2d commit 11921b3
Show file tree
Hide file tree
Showing 6 changed files with 4,653 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ ifndef MAJORVERSION
MAJORVERSION := $(basename $(VERSION))
endif

ifeq (,$(findstring $(MAJORVERSION), 12 13 14 15 16))
$(error PostgreSQL 12, 13, 14, 15, or 16 is required to compile this extension)
ifeq (,$(findstring $(MAJORVERSION), 12 13 14 15 16 17))
$(error PostgreSQL 12, 13, 14, 15, 16, or 17 is required to compile this extension)
endif
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
[MongoDB][1].

Please note that this version of mongo_fdw works with PostgreSQL and EDB
Postgres Advanced Server 12, 13, 14, 15 and 16.
Postgres Advanced Server 12, 13, 14, 15, 16 and 17.

<img src="https://upload.wikimedia.org/wikipedia/commons/2/29/Postgresql_elephant.svg" align="center" height="100" alt="PostgreSQL"/> + <img src="https://www.tutorialsteacher.com/Content/images/home/mongodb.svg" align="center" height="100" alt="MongoDB"/>

Expand Down
Loading

0 comments on commit 11921b3

Please sign in to comment.