pgsql: Fix incorrect value for "strategy" with deflateParams() in walme

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема pgsql: Fix incorrect value for "strategy" with deflateParams() in walme
Дата
Msg-id E1oYLKN-000GQI-5I@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix incorrect value for "strategy" with deflateParams() in walmethods.c

The zlib documentation mentions the values supported for the compression
strategy, but this code has been using a hardcoded value of 0 rather
than Z_DEFAULT_STRATEGY.  This commit adjusts the code to use
Z_DEFAULT_STRATEGY.

Backpatch down to where this code has been added to ease the backport of
any future patch touching this area.

Reported-by: Tom Lane
Discussion: https://postgr.es/m/1400032.1662217889@sss.pgh.pa.us
Backpatch-through: 10

Branch
------
REL_11_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/f01cc02259df914db78e624babb2bc08fa9a9509

Modified Files
--------------
src/bin/pg_basebackup/walmethods.c | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Amit Kapila
Дата:
Сообщение: pgsql: Fix typo in pgbench.c.
Следующее
От: John Naylor
Дата:
Сообщение: Re: pgsql: Move gramparse.h to src/backend/parser