You've already forked pgbackrest
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:
@ -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
|
||||
|
Reference in New Issue
Block a user