pgsql: Blind attempt to fix pglz_maximum_compressed_size

From: Tomas Vondra <tomas(dot)vondra(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Blind attempt to fix pglz_maximum_compressed_size
Date: 2019-10-01 14:56:45
Message-ID: E1iFJa1-0005b8-Og@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Blind attempt to fix pglz_maximum_compressed_size

Commit 11a078cf87 triggered failures on big-endian machines, and the
only plausible place for an issue seems to be that TOAST_COMPRESS_SIZE
calls VARSIZE instead of VARSIZE_ANY. So try fixing that blindly.

Discussion: https://www.postgresql.org/message-id/20191001131803.j6uin7nho7t6vxzy%40development

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/540f31680913b4e11f2caa40cafeca269cfcb22f

Modified Files
--------------
src/include/access/toast_internals.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Alexander Korotkov 2019-10-01 17:41:43 Re: pgsql: Implement jsonpath .datetime() method
Previous Message Michael Paquier 2019-10-01 14:28:16 Re: pgsql: Add hooks for session start and session end, take two