pgsql: Put tests of md5() function into separate test file

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Put tests of md5() function into separate test file
Date: 2022-10-13 10:25:38
Message-ID: E1oivPF-002B6v-Un@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Put tests of md5() function into separate test file

In FIPS mode, these calls will fail. By having them in a separate
file, it would make it easier to have an alternative output file or
selectively disable these tests. This isn't done here; this is just
some preparation.

Reviewed-by: Michael Paquier <michael(at)paquier(dot)xyz>
Discussion: https://www.postgresql.org/message-id/647f6cc1-473d-f788-ade0-c09201e5ab6a@enterprisedb.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/9786b89bd1b4c298ed900d118cbb5eb997c34905

Modified Files
--------------
src/test/regress/expected/md5.out | 91 +++++++++++++++++++++++++++++++++++
src/test/regress/expected/strings.out | 88 ---------------------------------
src/test/regress/parallel_schedule | 2 +-
src/test/regress/sql/md5.sql | 36 ++++++++++++++
src/test/regress/sql/strings.sql | 32 ------------
5 files changed, 128 insertions(+), 121 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Alvaro Herrera 2022-10-13 11:37:07 pgsql: Fix typo in CREATE PUBLICATION reference page
Previous Message Etsuro Fujita 2022-10-13 09:51:51 pgsql: Allow batch insertion during COPY into a foreign table.