Thread
Commits
-
Doc: fix incorrectly stated argument list for pgcrypto's hmac() function.
- 716f645d12aa 9.3.24 landed
- 0720049ce1c8 9.4.19 landed
- 206eff2f9c53 9.5.14 landed
- 7171a60cf45c 9.6.10 landed
- aa72d54198cb 10.5 landed
- 1d6c93f8f412 11.0 landed
- a3274e0d2887 12.0 landed
-
Incorrect argument type documented for hmac function
The Post Office <noreply@postgresql.org> — 2018-08-05T04:27:52Z
The following documentation comment has been logged on the website: Page: https://www.postgresql.org/docs/10/static/pgcrypto.html Description: 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 Thank you!
-
Re: Incorrect argument type documented for hmac function
Tom Lane <tgl@sss.pgh.pa.us> — 2018-08-05T16:58:59Z
=?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