1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-06-18 23:57:33 +02:00

PostgreSQL 11 Beta 4 support.

Catalog version changed for this release, so update it.

Also update and upload a new container with beta 4 installed.
This commit is contained in:
David Steele
2018-09-21 13:25:27 -04:00
parent d513a46e6d
commit c0b0b4e541
6 changed files with 18 additions and 5 deletions

View File

@ -30,7 +30,7 @@ pgVersionMap(uint32_t controlVersion, uint32_t catalogVersion)
unsigned int result = 0;
if (controlVersion == 1100 && catalogVersion == 201806231)
if (controlVersion == 1100 && catalogVersion == 201809051)
result = PG_VERSION_11;
else if (controlVersion == 1002 && catalogVersion == 201707211)
result = PG_VERSION_10;