]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix incorrect value for "strategy" with deflateParams() in walmethods.c
authorMichael Paquier <michael@paquier.xyz>
Wed, 14 Sep 2022 05:52:26 +0000 (14:52 +0900)
committerMichael Paquier <michael@paquier.xyz>
Wed, 14 Sep 2022 05:52:26 +0000 (14:52 +0900)
commitb3c630cc9230ef1ead0dab0ec1498fb4fd2d0de6
treefde8711436409f46c5d9c3aac4c789f32c23aeec
parent7fe55d5e12b66c7807d8af1f45946d7d48f5d6db
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
src/bin/pg_basebackup/walmethods.c