diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2018-08-05 13:03:42 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2018-08-05 13:03:42 -0400 |
commit | a3274e0d28871f25c4c76e335b39766d7e5be07c (patch) | |
tree | d1860029b6c41ed693d3c80b917ca53937e15f37 | |
parent | 6b9eb503d28b1e6d94961d2aee833c931a887ee6 (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 7e726cc8910..8ab92c4e8f4 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> |