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:29 -0400 |
commit | 0720049ce1c8b526c9e63f6d92732cee3d0e0c17 (patch) | |
tree | 99b2284a4751813fc19ffc724bdae44bf99f2d22 | |
parent | e69a3ac4a3e0ba640264a94dded197c21c33aa11 (diff) | |
download | postgresql-0720049ce1c8b526c9e63f6d92732cee3d0e0c17.tar.gz postgresql-0720049ce1c8b526c9e63f6d92732cee3d0e0c17.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 3e64099fe8d..b82ff665a6f 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> |