You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Remove incidental md5() function uses from several tests
This removes md5() function calls from these test suites:- bloom- test_decoding- isolation- recovery- subscriptionThis covers all remaining test suites where md5() calls were just usedto generate some random data and can be replaced by appropriatelyadapted sha256() calls. This will eventually allow these tests topass in OpenSSL FIPS mode (which does not allow MD5 use). See also208bf36. Unlike for the main regression tests, I didn't write afipshash() wrapper here, because that would have been too repetitiveand wouldn't really save much here. In some cases it was easier toremove one layer of indirection by changing column types from text tobytea.Reviewed-by: Daniel Gustafsson <daniel@yesql.se>Discussion:https://www.postgresql.org/message-id/flat/f9b480b5-e473-d2d1-223a-4b9db30a229a@eisentraut.org