mirror of
https://github.com/postgres/postgres.git
synced 2026-04-22 06:37:06 -04:00
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
This commit is contained in:
parent
69599cc49e
commit
716f645d12
1 changed files with 1 additions and 1 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue