Skip to content

Commit 3534b9e

Browse files
weasellinpaunin
authored andcommitted
Support for PostgreSQL 11 (#236)
* Add support for Postgres-11 * Upgrade the extensions version for Postgres-11 - Upgrade `pg_repack` from 1.4.3 to 1.4.4 - To include the [fixing of the build failure](reorg/pg_repack#191). - Upgrade PostGIS from 2.4 to 2.5 - The 2.4 release (currently 2.4.7) only supports PostgreSQL 9.3-10. - The 2.5 release (currently 2.5.2) supports PostgreSQL 9.3-11. - Referring to [this release note](https://postgis.net/2019/03/11/postgis-patches/). * Exclude Combinations PostgreSQL-11 + repmgr-3.2 Since they are not compatible. https://repmgr.org/docs/current/install-requirements.html#INSTALL-COMPATIBILITY-MATRIX * Fixed the wait_recovery script In postgres 11, the `postgres: wal receiver process` command is changed to `postgres: walreceiver process`.
1 parent d0da350 commit 3534b9e

138 files changed

Lines changed: 4344 additions & 122 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.travis.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
##########################################################################
33
## AUTO-GENERATED FILE ##
4-
## BUILD_NUMBER=Fri 26 Apr 2019 22:57:06 +08 ##
4+
## BUILD_NUMBER=Wed Jul 3 10:29:46 JST 2019 ##
55
##########################################################################
66

77
sudo: required
@@ -81,6 +81,24 @@ jobs:
8181
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-9.5_repmgr-3.2_pgpool-3.3_barman-2.3 ./tests/run.sh
8282
env:
8383
- COMBINATION=postgres-9.5_repmgr-3.2_pgpool-3.3_barman-2.3
84+
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-11_repmgr-4.0_pgpool-3.7_barman-2.4 ./tests/run.sh
85+
env:
86+
- COMBINATION=postgres-11_repmgr-4.0_pgpool-3.7_barman-2.4
87+
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-11_repmgr-4.0_pgpool-3.7_barman-2.3 ./tests/run.sh
88+
env:
89+
- COMBINATION=postgres-11_repmgr-4.0_pgpool-3.7_barman-2.3
90+
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-11_repmgr-4.0_pgpool-3.6_barman-2.4 ./tests/run.sh
91+
env:
92+
- COMBINATION=postgres-11_repmgr-4.0_pgpool-3.6_barman-2.4
93+
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-11_repmgr-4.0_pgpool-3.6_barman-2.3 ./tests/run.sh
94+
env:
95+
- COMBINATION=postgres-11_repmgr-4.0_pgpool-3.6_barman-2.3
96+
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-11_repmgr-4.0_pgpool-3.3_barman-2.4 ./tests/run.sh
97+
env:
98+
- COMBINATION=postgres-11_repmgr-4.0_pgpool-3.3_barman-2.4
99+
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-11_repmgr-4.0_pgpool-3.3_barman-2.3 ./tests/run.sh
100+
env:
101+
- COMBINATION=postgres-11_repmgr-4.0_pgpool-3.3_barman-2.3
84102
- script: NO_COLOURS=1 DEBUG=1 TEST_COMBINATIONS=postgres-10_repmgr-4.0_pgpool-3.7_barman-2.4 ./tests/run.sh
85103
env:
86104
- COMBINATION=postgres-10_repmgr-4.0_pgpool-3.7_barman-2.4

docker-compose/latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
postgres-10_repmgr-4.0_pgpool-3.7_barman-2.4.yml
1+
postgres-11_repmgr-4.0_pgpool-3.7_barman-2.4.yml

docker-compose/postgres-10_repmgr-3.2_pgpool-3.3_barman-2.3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
##########################################################################
33
## AUTO-GENERATED FILE ##
4-
## BUILD_NUMBER=Sat 27 Apr 2019 12:29:35 +08 ##
4+
## BUILD_NUMBER=Wed Jul 3 10:29:46 JST 2019 ##
55
##########################################################################
66

77
version: '2'

docker-compose/postgres-10_repmgr-3.2_pgpool-3.3_barman-2.4.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
##########################################################################
33
## AUTO-GENERATED FILE ##
4-
## BUILD_NUMBER=Sat 27 Apr 2019 12:29:35 +08 ##
4+
## BUILD_NUMBER=Wed Jul 3 10:29:46 JST 2019 ##
55
##########################################################################
66

77
version: '2'

docker-compose/postgres-10_repmgr-3.2_pgpool-3.6_barman-2.3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
##########################################################################
33
## AUTO-GENERATED FILE ##
4-
## BUILD_NUMBER=Sat 27 Apr 2019 12:29:35 +08 ##
4+
## BUILD_NUMBER=Wed Jul 3 10:29:46 JST 2019 ##
55
##########################################################################
66

77
version: '2'

docker-compose/postgres-10_repmgr-3.2_pgpool-3.6_barman-2.4.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
##########################################################################
33
## AUTO-GENERATED FILE ##
4-
## BUILD_NUMBER=Sat 27 Apr 2019 12:29:35 +08 ##
4+
## BUILD_NUMBER=Wed Jul 3 10:29:46 JST 2019 ##
55
##########################################################################
66

77
version: '2'

docker-compose/postgres-10_repmgr-3.2_pgpool-3.7_barman-2.3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
##########################################################################
33
## AUTO-GENERATED FILE ##
4-
## BUILD_NUMBER=Sat 27 Apr 2019 12:29:35 +08 ##
4+
## BUILD_NUMBER=Wed Jul 3 10:29:46 JST 2019 ##
55
##########################################################################
66

77
version: '2'

docker-compose/postgres-10_repmgr-3.2_pgpool-3.7_barman-2.4.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
##########################################################################
33
## AUTO-GENERATED FILE ##
4-
## BUILD_NUMBER=Sat 27 Apr 2019 12:29:35 +08 ##
4+
## BUILD_NUMBER=Wed Jul 3 10:29:46 JST 2019 ##
55
##########################################################################
66

77
version: '2'

docker-compose/postgres-10_repmgr-4.0_pgpool-3.3_barman-2.3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
##########################################################################
33
## AUTO-GENERATED FILE ##
4-
## BUILD_NUMBER=Sat 27 Apr 2019 12:29:35 +08 ##
4+
## BUILD_NUMBER=Wed Jul 3 10:29:46 JST 2019 ##
55
##########################################################################
66

77
version: '2'

docker-compose/postgres-10_repmgr-4.0_pgpool-3.3_barman-2.4.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
##########################################################################
33
## AUTO-GENERATED FILE ##
4-
## BUILD_NUMBER=Sat 27 Apr 2019 12:29:35 +08 ##
4+
## BUILD_NUMBER=Wed Jul 3 10:29:46 JST 2019 ##
55
##########################################################################
66

77
version: '2'

0 commit comments

Comments
 (0)