diff options
author | Tom Lane | 2018-08-05 17:03:42 +0000 |
---|---|---|
committer | Tom Lane | 2018-08-05 17:04:36 +0000 |
commit | 716f645d12aabcd5605d4d9092be2a13b4481729 (patch) | |
tree | 3643eed2d3c38c30203e90262e15277d24dc2662 /doc/src | |
parent | 69599cc49e7cc48f180e49322aea00c1ec634388 (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
Diffstat (limited to 'doc/src')
-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 59f05e177ca..90d541c9cee 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> |