Skip to content

Commit

Permalink
Stamp 5.2.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevanchalke committed Jun 15, 2021
1 parent 8e62592 commit ceb03dc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion expected/select.out
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ CREATE USER MAPPING FOR public SERVER mongo_server;
SELECT mongo_fdw_version();
mongo_fdw_version
-------------------
50208
50209
(1 row)

-- Create foreign tables
Expand Down
2 changes: 1 addition & 1 deletion expected/select_1.out
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ CREATE USER MAPPING FOR public SERVER mongo_server;
SELECT mongo_fdw_version();
mongo_fdw_version
-------------------
50208
50209
(1 row)

-- Create foreign tables
Expand Down
4 changes: 2 additions & 2 deletions mongo_fdw.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ PG_MODULE_MAGIC;

/*
* In PG 9.5.1 the number will be 90501,
* our version is 5.2.8 so number will be 50208
* our version is 5.2.9 so number will be 50209
*/
#define CODE_VERSION 50208
#define CODE_VERSION 50209

extern PGDLLEXPORT void _PG_init(void);
const char *EscapeJsonString(const char *string);
Expand Down

0 comments on commit ceb03dc

Please sign in to comment.