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

PostgreSQL 15 support.

PostgreSQL 15 drops support for exclusive backup and renames the start/stop backup commands.

This is based on the pgdg-testing repo since beta1 has not been released yet, but it seems unlikely that breaking changes will be made at this point. beta1 should be tagged just before our next release so we'll retest before the release.
This commit is contained in:
David Steele
2022-05-04 11:55:59 -04:00
committed by GitHub
parent 8e849ae85d
commit 20782c88bc
19 changed files with 362 additions and 31 deletions

View File

@ -24,8 +24,9 @@ PostgreSQL version constants
#define PG_VERSION_12 120000
#define PG_VERSION_13 130000
#define PG_VERSION_14 140000
#define PG_VERSION_15 150000
#define PG_VERSION_MAX PG_VERSION_14
#define PG_VERSION_MAX PG_VERSION_15
/***********************************************************************************************************************************
Version where various PostgreSQL capabilities were introduced
@ -72,5 +73,6 @@ PostgreSQL version string constants for use in error messages
#define PG_VERSION_12_STR "12"
#define PG_VERSION_13_STR "13"
#define PG_VERSION_14_STR "14"
#define PG_VERSION_15_STR "15"
#endif