From: Tom Lane Date: Sun, 5 Aug 2018 17:03:42 +0000 (-0400) Subject: Doc: fix incorrectly stated argument list for pgcrypto's hmac() function. X-Git-Tag: REL9_5_14~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=206eff2f9c5398c3b0228ca325d0e738ad4a07d3;p=thirdparty%2Fpostgresql.git Doc: fix incorrectly stated argument list for pgcrypto's hmac() function. The bytea variant takes (bytea, bytea, text). Per unsigned report. Discussion: https://postgr.es/m/153344327294.1404.654155870612982042@wrigleys.postgresql.org --- diff --git a/doc/src/sgml/pgcrypto.sgml b/doc/src/sgml/pgcrypto.sgml index a844afce99b..f3b2f8cb4ff 100644 --- a/doc/src/sgml/pgcrypto.sgml +++ b/doc/src/sgml/pgcrypto.sgml @@ -63,7 +63,7 @@ $$ LANGUAGE SQL STRICT IMMUTABLE; hmac(data text, key text, type text) returns bytea -hmac(data bytea, key text, type text) returns bytea +hmac(data bytea, key bytea, type text) returns bytea