Skip to content
Snippets Groups Projects
Commit 1d6c93f8 authored by Tom Lane's avatar Tom Lane
Browse files

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
parent a2441558
No related branches found
No related tags found
No related merge requests found
...@@ -63,7 +63,7 @@ $$ LANGUAGE SQL STRICT IMMUTABLE; ...@@ -63,7 +63,7 @@ $$ LANGUAGE SQL STRICT IMMUTABLE;
<synopsis> <synopsis>
hmac(data text, key text, type text) returns bytea 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> </synopsis>
<para> <para>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment