diff options
author | Tom Lane | 2018-08-05 17:03:42 +0000 |
---|---|---|
committer | Tom Lane | 2018-08-05 17:04:05 +0000 |
commit | aa72d54198cb84b974665848608b267605d9c6a8 (patch) | |
tree | c3b3c3c268e3eb4b0141f4b17600413772cbfe0b | |
parent | f6a124d019a4e8fd368fb759814c94b02a65781f (diff) |
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
-rw-r--r-- | doc/src/sgml/pgcrypto.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/pgcrypto.sgml b/doc/src/sgml/pgcrypto.sgml index b9f34d2cf0b..ae24b05ea51 100644 --- a/doc/src/sgml/pgcrypto.sgml +++ b/doc/src/sgml/pgcrypto.sgml @@ -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> |