Skip to content

Commit a3274e0

Browse files
committed
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
1 parent 6b9eb50 commit a3274e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/sgml/pgcrypto.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ $$ LANGUAGE SQL STRICT IMMUTABLE;
6363

6464
<synopsis>
6565
hmac(data text, key text, type text) returns bytea
66-
hmac(data bytea, key text, type text) returns bytea
66+
hmac(data bytea, key bytea, type text) returns bytea
6767
</synopsis>
6868

6969
<para>

0 commit comments

Comments
 (0)