pgsql: Remove md5() call from isolation test for CLUSTER and TOAST

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Remove md5() call from isolation test for CLUSTER and TOAST
Date: 2025-08-17 23:25:56
Message-ID: E1unml9-000OYA-2H@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Remove md5() call from isolation test for CLUSTER and TOAST

This test was failing because MD5 computations are not supported in
these environments. This switches the test to rely on sha256() instead,
providing the same coverage while avoiding the failure.

Oversight in f57e214d1cbb. Per buildfarm members gecko, molamola,
shikra and froghopper.

Discussion: https://postgr.es/m/aKJijS2ZRfRZiYb0@paquier.xyz

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/97ca67377aa289762af432c96c5204685b3ecd21

Modified Files
--------------
src/test/isolation/specs/cluster-toast-value-reuse.spec | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2025-08-18 02:40:16 pgsql: Refactor init_params() in sequence.c to not use FormData_pg_sequ
Previous Message Michael Paquier 2025-08-17 23:15:25 Re: pgsql: Add isolation test for TOAST value reuse during CLUSTER