Skip to content

Commit 4ca28c5

Browse files
committed
PG-2536 Add PostgreSQL 19 to our CI
Run our CI against PostgreSQL 19 too but do not change sanitizer and coverage to 19 until the final version of PostgreSQL 19 is released.
1 parent 6932f0d commit 4ca28c5

3 files changed

Lines changed: 20 additions & 4 deletions

File tree

.github/workflows/matrix.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
pg_version: [16, 17, 18]
19+
pg_version: [16, 17, 18, 19]
2020
os: [ubuntu-24.04]
2121
compiler: [gcc, clang]
2222
build_type: [debugoptimized]
@@ -33,7 +33,7 @@ jobs:
3333
strategy:
3434
fail-fast: false
3535
matrix:
36-
pg_version: [18]
36+
pg_version: [18, 19]
3737
os: [macos-15]
3838
compiler: [clang]
3939
build_type: [debugoptimized]
@@ -50,7 +50,7 @@ jobs:
5050
strategy:
5151
fail-fast: false
5252
matrix:
53-
pg_version: [16, 17, 18]
53+
pg_version: [16, 17, 18, 19]
5454
os: [ubuntu-24.04-arm]
5555
compiler: [gcc, clang]
5656
build_type: [debugoptimized]
@@ -67,7 +67,7 @@ jobs:
6767
strategy:
6868
fail-fast: false
6969
matrix:
70-
pg_version: [16, 17, 18]
70+
pg_version: [16, 17, 18, 19]
7171
os: [ubuntu-24.04]
7272
compiler: [gcc]
7373
build_type: [exec-backend]

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,13 @@
22

33
## [Unreleased]
44

5+
### Added
6+
7+
- Support for PostgreSQL 19 Beta 3 ([PG-2536](https://perconadev.atlassian.net/browse/PG-2536))
8+
9+
## 2.2.2
10+
511
### Fixed
12+
613
- Make WAL archive tools work with pg_wal dir as symlink ([PG-2609](https://perconadev.atlassian.net/browse/PG-2609))
14+
- ...

ci_scripts/perl/PostgreSQL/Test/TdeCluster.pm

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ my %smgr_skip = (
4040
'pg_restore fail to restore _pg_tde schema on cluster which already has it',
4141
'src/bin/pg_upgrade/t/006_transfer_modes.pl' =>
4242
'pg_restore fail to restore _pg_tde schema on cluster which already has it',
43+
'src/bin/pg_upgrade/t/007_multixact_conversion.pl' =>
44+
'pg_restore fail to restore _pg_tde schema on cluster which already has it',
45+
'src/bin/pg_upgrade/t/008_extension_control_path.pl' =>
46+
'pg_restore fail to restore _pg_tde schema on cluster which already has it',
4347
'src/bin/scripts/t/020_createdb.pl' =>
4448
'tries to use FILE_COPY strategy for database creation with encrypted objects in the template',
4549
'src/test/recovery/t/016_min_consistency.pl' =>
@@ -63,8 +67,12 @@ my %wal_skip = (
6367
'copies WAL directly to archive without using archive_command',
6468
'src/bin/pg_rewind/t/011_wal_copy.pl' =>
6569
'debug output changed due to us re-encrypting WAL',
70+
'src/bin/pg_verifybackup/t/008_untar.pl' =>
71+
'pg_basebackup without -E from server with encrypted WAL produces broken backups',
6672
'src/bin/pg_verifybackup/t/009_extract.pl' =>
6773
'pg_basebackup without -E from server with encrypted WAL produces broken backups',
74+
'src/bin/pg_verifybackup/t/010_client_untar.pl' =>
75+
'pg_basebackup without -E from server with encrypted WAL produces broken backups',
6876
'src/bin/pg_waldump/t/001_basic.pl' =>
6977
'pg_waldump needs extra options for encrypted WAL',
7078
'src/bin/pg_waldump/t/002_save_fullpage.pl' =>

0 commit comments

Comments
 (0)