Set gen_random_uuid() to volatile
It was set to immutable. This was a mistake in the initial commit (5925e5549890416bcf588334d9d0bc99f8ad6c7f). Reported-by: hubert depesz lubaczewski <depesz@depesz.com> Discussion: https://www.postgresql.org/message-id/flat/20200218185452.GA8710%40depesz.com
This commit is contained in:
parent
5b618e1f48
commit
2ed19a488e
@ -53,6 +53,6 @@
|
||||
*/
|
||||
|
||||
/* yyyymmddN */
|
||||
#define CATALOG_VERSION_NO 202002071
|
||||
#define CATALOG_VERSION_NO 202002191
|
||||
|
||||
#endif
|
||||
|
@ -8421,8 +8421,8 @@
|
||||
proname => 'uuid_hash_extended', prorettype => 'int8',
|
||||
proargtypes => 'uuid int8', prosrc => 'uuid_hash_extended' },
|
||||
{ oid => '3432', descr => 'generate random UUID',
|
||||
proname => 'gen_random_uuid', proleakproof => 't', prorettype => 'uuid',
|
||||
proargtypes => '', prosrc => 'gen_random_uuid' },
|
||||
proname => 'gen_random_uuid', proleakproof => 't', provolatile => 'v',
|
||||
prorettype => 'uuid', proargtypes => '', prosrc => 'gen_random_uuid' },
|
||||
|
||||
# pg_lsn
|
||||
{ oid => '3229', descr => 'I/O',
|
||||
|
Loading…
x
Reference in New Issue
Block a user