Commit 2ed19a48 authored by Peter Eisentraut's avatar Peter Eisentraut

Set gen_random_uuid() to volatile

It was set to immutable.  This was a mistake in the initial
commit (5925e554).
Reported-by: default avatarhubert depesz lubaczewski <depesz@depesz.com>
Discussion: https://www.postgresql.org/message-id/flat/20200218185452.GA8710%40depesz.com
parent 5b618e1f
...@@ -53,6 +53,6 @@ ...@@ -53,6 +53,6 @@
*/ */
/* yyyymmddN */ /* yyyymmddN */
#define CATALOG_VERSION_NO 202002071 #define CATALOG_VERSION_NO 202002191
#endif #endif
...@@ -8421,8 +8421,8 @@ ...@@ -8421,8 +8421,8 @@
proname => 'uuid_hash_extended', prorettype => 'int8', proname => 'uuid_hash_extended', prorettype => 'int8',
proargtypes => 'uuid int8', prosrc => 'uuid_hash_extended' }, proargtypes => 'uuid int8', prosrc => 'uuid_hash_extended' },
{ oid => '3432', descr => 'generate random UUID', { oid => '3432', descr => 'generate random UUID',
proname => 'gen_random_uuid', proleakproof => 't', prorettype => 'uuid', proname => 'gen_random_uuid', proleakproof => 't', provolatile => 'v',
proargtypes => '', prosrc => 'gen_random_uuid' }, prorettype => 'uuid', proargtypes => '', prosrc => 'gen_random_uuid' },
# pg_lsn # pg_lsn
{ oid => '3229', descr => 'I/O', { oid => '3229', descr => 'I/O',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment