diff options
author | Bruce Momjian <bruce@momjian.us> | 2022-08-31 22:04:36 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2022-08-31 22:04:36 -0400 |
commit | 8dc12a9b64e9e2f49bcbc52fd69e7296529ff315 (patch) | |
tree | 09a47af9923215fe39fbe1aff68a90ba38ffd4f7 | |
parent | 8d489a30c0da319b24f9d22a0267c3c7f26564a7 (diff) | |
download | postgresql-8dc12a9b64e9e2f49bcbc52fd69e7296529ff315.tar.gz postgresql-8dc12a9b64e9e2f49bcbc52fd69e7296529ff315.zip |
doc: clarify that pgcrypto's gen_random_uuid calls core func.
Previously it was just marked as a duplicate of the core function.
Reported-by: Andreas Dijkman
Discussion: https://postgr.es/m/17349-24d61e214429e8c1@postgresql.org
Backpatch-through: 13
-rw-r--r-- | doc/src/sgml/pgcrypto.sgml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/src/sgml/pgcrypto.sgml b/doc/src/sgml/pgcrypto.sgml index 79759654a78..43fb8dbe666 100644 --- a/doc/src/sgml/pgcrypto.sgml +++ b/doc/src/sgml/pgcrypto.sgml @@ -1143,8 +1143,9 @@ gen_random_bytes(count integer) returns bytea gen_random_uuid() returns uuid </synopsis> <para> - Returns a version 4 (random) UUID. (Obsolete, this function is now also - included in core <productname>PostgreSQL</productname>.) + Returns a version 4 (random) UUID. (Obsolete, this function + internally calls the <link linkend="functions-uuid">core + function</link> of the same name.) </para> </sect2> |