1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-11-28 20:04:05 +03:00

New CI container build for PostgreSQL 17 beta1.

Update the catalog version for beta 1 so pgbackrest will not work with any prior development versions.

Also improve the integration/all test so the catalog version does not need to be updated again during the beta period.
This commit is contained in:
David Steele
2024-05-24 12:24:11 +10:00
parent c401ae8fb8
commit 899b892788
5 changed files with 15 additions and 15 deletions

View File

@@ -238,7 +238,7 @@ testRun(void)
TEST_ASSIGN(info, pgControlFromFile(storageTest, NULL), "get control info");
TEST_RESULT_UINT(info.systemId, 0xEFEFEFEFEF, "check system id");
TEST_RESULT_UINT(info.version, PG_VERSION_17, "check version");
TEST_RESULT_UINT(info.catalogVersion, 202404021, "check catalog version");
TEST_RESULT_UINT(info.catalogVersion, 202405161, "check catalog version");
TEST_RESULT_UINT(info.checkpoint, 0xAABBAABBEEFFEEFF, "check checkpoint");
TEST_RESULT_UINT(info.timeline, 88, "check timeline");
TEST_RESULT_UINT(info.pageSize, pgPageSize32, "check page size");