1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-05 09:19:17 +03:00

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
This commit is contained in:
Tom Lane 2018-08-05 13:03:42 -04:00
parent b484bffe7d
commit 7171a60cf4

View File

@ -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>