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:04:13 -0400 |
commit | 7171a60cf45cbef1960dc96adeabdff287c700bd (patch) | |
tree | c5d76046345006ea13e4d2fb64df2c57ad6dae36 | |
parent | b484bffe7d0e527b3e8f853c80f600d66b247501 (diff) | |
download | postgresql-7171a60cf45cbef1960dc96adeabdff287c700bd.tar.gz postgresql-7171a60cf45cbef1960dc96adeabdff287c700bd.zip |
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 6b05b5ce483..0c0175cfe0a 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> |