Re: Incorrect argument type documented for hmac function

Tom Lane <tgl@sss.pgh.pa.us>

From: Tom Lane <tgl@sss.pgh.pa.us>
To: x.postgresqldocs@alanfairless.com
Cc: pgsql-docs@lists.postgresql.org
Date: 2018-08-05T16:58:59Z
Lists: pgsql-docs
=?utf-8?q?PG_Doc_comments_form?= <noreply@postgresql.org> writes:
> This line in the document:
> hmac(data bytea, key text, type text) returns bytea
> Incorrectly lists the key as type text when it is also bytea.  The line
> should read:
> hmac(data bytea, key bytea, type text) returns bytea

Indeed.  Thanks for catching that!

			regards, tom lane


Commits

  1. Doc: fix incorrectly stated argument list for pgcrypto's hmac() function.