]> granicus.if.org Git - postgresql/commitdiff
Doc: fix incorrectly stated argument list for pgcrypto's hmac() function.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 5 Aug 2018 17:03:42 +0000 (13:03 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 5 Aug 2018 17:03:42 +0000 (13:03 -0400)
The bytea variant takes (bytea, bytea, text).
Per unsigned report.

Discussion: https://postgr.es/m/153344327294.1404.654155870612982042@wrigleys.postgresql.org

doc/src/sgml/pgcrypto.sgml

index 7e726cc8910060f7f56018c8bcb4dea8ffdac104..8ab92c4e8f4bfe02bf65b8bfbdc33ccd9264c7da 100644 (file)
@@ -63,7 +63,7 @@ $$ LANGUAGE SQL STRICT IMMUTABLE;
 
 <synopsis>
 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
 </synopsis>
 
    <para>