You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-06-18 23:57:33 +02:00
PostgreSQL 11 Beta 1 support.
This commit is contained in:
@ -22,7 +22,9 @@ pgVersionMap(uint32_t controlVersion, uint32_t catalogVersion)
|
||||
|
||||
uint result = 0;
|
||||
|
||||
if (controlVersion == 1002 && catalogVersion == 201707211)
|
||||
if (controlVersion == 1100 && catalogVersion == 201804191)
|
||||
result = PG_VERSION_11;
|
||||
else if (controlVersion == 1002 && catalogVersion == 201707211)
|
||||
result = PG_VERSION_10;
|
||||
else if (controlVersion == 960 && catalogVersion == 201608131)
|
||||
result = PG_VERSION_96;
|
||||
|
Reference in New Issue
Block a user