summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2018-08-05 13:03:42 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2018-08-05 13:04:21 -0400
commit206eff2f9c5398c3b0228ca325d0e738ad4a07d3 (patch)
tree6042bd60ab26fe11cf5fdd1882eead27bc7c15e7
parent5ad143cda092f19760d7fb1be861ed24e724ef4d (diff)
downloadpostgresql-206eff2f9c5398c3b0228ca325d0e738ad4a07d3.tar.gz
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.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/pgcrypto.sgml b/doc/src/sgml/pgcrypto.sgml
index a844afce99..f3b2f8cb4f 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>