You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
`pg_probackup` is a utility to manage backup and recovery of PostgreSQL database clusters. It is designed to perform periodic backups of the PostgreSQL instance that enable you to restore the server in case of a failure.
7
7
8
8
The utility is compatible with:
9
-
* PostgreSQL 13, 14, 15, 16, 17
9
+
* PostgreSQL 13, 14, 15, 16, 17, 18
10
10
11
11
As compared to other backup solutions,`pg_probackup` offers the following benefits that can help you implement different backup strategies and deal with large amounts of data:
12
12
* Incremental backup: page-level incremental backup allows you to save disk space, speed up backup and restore. With three different incremental modes, you can plan the backup strategy in accordance with your data flow.
@@ -79,7 +79,7 @@ For users of Postgres Pro products, commercial editions of pg_probackup are avai
79
79
##Building from source
80
80
###Linux
81
81
82
-
To compile`pg_probackup`, you must have a PostgreSQL installation and raw source tree.Execute this in the module's directory:
82
+
To compile`pg_probackup`, you must have a PostgreSQL installation and raw source tree.For versions under 18 execute this in the module's directory:
83
83
84
84
```shell
85
85
make USE_PGXS=1 PG_CONFIG=<path_to_pg_config> top_srcdir=<path_to_PostgreSQL_source_tree>
@@ -91,6 +91,8 @@ The alternative way, without using the PGXS infrastructure, is to place `pg_prob
91
91
cd<path_to_PostgreSQL_source_tree>&& git clone https://github.com/postgrespro/pg_probackup contrib/pg_probackup&&cd contrib/pg_probackup&& make
92
92
```
93
93
94
+
For version 18 you have to apply PostgreSQL core patch (patches/REL_18_STABLE_pg_probackup.patch) first and recompile and reinstall PostgreSQL
95
+
94
96
###Windows
95
97
96
98
Currently pg_probackup can be build using only MSVC 2013.