1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-11-05 04:30:41 +03: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

@@ -78,6 +78,16 @@ typedef struct PgInterface
static const PgInterface pgInterface[] =
{
{
.version = PG_VERSION_14,
.controlIs = pgInterfaceControlIs140,
.control = pgInterfaceControl140,
.controlVersion = pgInterfaceControlVersion140,
.walIs = pgInterfaceWalIs140,
.wal = pgInterfaceWal140,
},
{
.version = PG_VERSION_13,