diff --git a/src/build/postgres/postgres.yaml b/src/build/postgres/postgres.yaml index 3aef7ccf8..a603738b1 100644 --- a/src/build/postgres/postgres.yaml +++ b/src/build/postgres/postgres.yaml @@ -15,5 +15,4 @@ version: - 13 - 14 - 15 - - 16: - release: false + - 16 diff --git a/src/postgres/interface/version.vendor.h b/src/postgres/interface/version.vendor.h index 67bc67bc2..710d1c2e9 100644 --- a/src/postgres/interface/version.vendor.h +++ b/src/postgres/interface/version.vendor.h @@ -169,7 +169,7 @@ Types from src/include/catalog/catversion.h */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 202304110 +#define CATALOG_VERSION_NO 202307071 #elif PG_VERSION >= PG_VERSION_15 diff --git a/test/container.yaml b/test/container.yaml index 1040305e5..8a8f4ebe0 100644 --- a/test/container.yaml +++ b/test/container.yaml @@ -12,9 +12,9 @@ # - docker login -u pgbackrest # - VM=XXX;DATE=YYYYMMDDX;BASE=pgbackrest/test:${VM?}-base;docker tag ${BASE?} ${BASE?}-${DATE?} && docker push ${BASE?}-${DATE?} # ********************************************************************************************************************************** -20230831A: +20230914A: x86_64: - u22: abc4c03323e07525917eb9d36a9a5a228bce5dcd + u22: 82f81ccd261d9b83066cd59da44ada3f328403ab 20230622A: x86_64: diff --git a/test/lib/pgBackRestTest/Common/ContainerTest.pm b/test/lib/pgBackRestTest/Common/ContainerTest.pm index 70f434f8b..5b5eda49c 100644 --- a/test/lib/pgBackRestTest/Common/ContainerTest.pm +++ b/test/lib/pgBackRestTest/Common/ContainerTest.pm @@ -509,7 +509,7 @@ sub containerBuild { $strScript .= " echo \"deb http://apt.postgresql.org/pub/repos/apt/ \$(lsb_release -s -c)-pgdg main" . - ($strOS eq VM_U22 ? ' 16' : '') . "\" >> /etc/apt/sources.list.d/pgdg.list && \\\n" . + "\" >> /etc/apt/sources.list.d/pgdg.list && \\\n" . " wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \\\n" . " apt-get update && \\\n" . " apt-get install -y --no-install-recommends postgresql-common libpq-dev && \\\n" . diff --git a/test/lib/pgBackRestTest/Env/HostEnvTest.pm b/test/lib/pgBackRestTest/Env/HostEnvTest.pm index e3e874b93..6812b8fc6 100644 --- a/test/lib/pgBackRestTest/Env/HostEnvTest.pm +++ b/test/lib/pgBackRestTest/Env/HostEnvTest.pm @@ -260,7 +260,7 @@ sub dbCatalogVersion &PG_VERSION_13 => 202007201, &PG_VERSION_14 => 202105121, &PG_VERSION_15 => 202209061, - &PG_VERSION_16 => 202304110, + &PG_VERSION_16 => 202307071, }; if (!defined($hCatalogVersion->{$strPgVersion}))