1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-07-05 00:28:52 +02:00

Add PostgreSQL 14 support.

There are no code changes from PostgreSQL 13 so simply add the new version.

Add CATALOG_VERSION_NO_MAX to allow the catalog version to "float" during the PostgreSQL beta/rc period so new pgBackRest versions are not required when the catalog version changes.

Update the integration tests to handle new PostgreSQL startup messages.
This commit is contained in:
David Steele
2021-05-24 17:17:03 -04:00
committed by GitHub
parent eba013b49b
commit 2452c4d5a4
18 changed files with 185 additions and 10 deletions

View File

@ -25,8 +25,9 @@ PostgreSQL version constants
#define PG_VERSION_11 110000
#define PG_VERSION_12 120000
#define PG_VERSION_13 130000
#define PG_VERSION_14 140000
#define PG_VERSION_MAX PG_VERSION_13
#define PG_VERSION_MAX PG_VERSION_14
/***********************************************************************************************************************************
Version where various PostgreSQL capabilities were introduced
@ -77,5 +78,6 @@ PostgreSQL version string constants for use in error messages
#define PG_VERSION_11_STR "11"
#define PG_VERSION_12_STR "12"
#define PG_VERSION_13_STR "13"
#define PG_VERSION_14_STR "14"
#endif