Bruno Friedmann
e8335cb986
- update to 2.24 version : Bugfix + Bug Fixes: - Prevent defunct processes in asynchronous archive commands. - Error when archive-get/archive-push/restore are not run on a PostgreSQL host. - Read HTTP content to eof when size/encoding not specified. - Fix resume when the resumable backup was created by Perl. In this case the resumable backup should be ignored, but the C code was not able to load the partial manifest written by Perl since the format differs slightly. Add validations to catch this case and continue gracefully. + Features: - Auto-select backup set on restore when time target is specified. Auto-selection is performed only when --set is not specified. If a backup set for the given target time cannot not be found, the latest (default) backup set will be used. + Improvements: - Skip pg_internal.init temp file during backup. - Add more validations to the manifest on backup. + Documentation Improvements: - Prevent lock-bot from adding comments to locked issues. - Packaging + use %autopatch + use a normalized name for source %name-%version.tar.gz + spec cleaning + Refresh patch libpq-fe.h_localisation.patch + Delete merged upstream_wrongly_bring_back_pg_config.patch OBS-URL: https://build.opensuse.org/request/show/787841 OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/pgbackrest?expand=0&rev=30
13 lines
485 B
Diff
13 lines
485 B
Diff
diff -rup a/src/postgres/client.c b/src/postgres/client.c
|
|
--- a/src/postgres/client.c 2020-02-25 23:05:45.000000000 +0100
|
|
+++ b/src/postgres/client.c 2020-03-24 15:30:19.361417162 +0100
|
|
@@ -3,7 +3,7 @@ Postgres Client
|
|
***********************************************************************************************************************************/
|
|
#include "build.auto.h"
|
|
|
|
-#include <libpq-fe.h>
|
|
+#include <pgsql/libpq-fe.h>
|
|
|
|
#include "common/debug.h"
|
|
#include "common/log.h"
|