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

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix incorrect value for "strategy" with deflateParams() in walme
Date: 2022-09-14 05:52:51
Message-ID: E1oYLKN-000GQE-4W@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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_13_STABLE

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

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

Browse pgsql-committers by date

  From Date Subject
Next Message John Naylor 2022-09-14 06:34:27 Re: pgsql: Move gramparse.h to src/backend/parser
Previous Message Amit Kapila 2022-09-14 05:51:35 pgsql: Fix typo in pgbench.c.