diff options
author | Peter Eisentraut | 2020-02-19 19:09:32 +0000 |
---|---|---|
committer | Peter Eisentraut | 2020-02-19 19:09:32 +0000 |
commit | 2ed19a488edb3980e054e6064e7028ccb652e5df (patch) | |
tree | 44ed2349d644005f32dac71e40c619d00833f5f5 | |
parent | 5b618e1f48aecc66e3a9f60289491da520faae19 (diff) |
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
-rw-r--r-- | src/include/catalog/catversion.h | 2 | ||||
-rw-r--r-- | src/include/catalog/pg_proc.dat | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index 571b6a2c23b..2fe64b9d19a 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -53,6 +53,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 202002071 +#define CATALOG_VERSION_NO 202002191 #endif diff --git a/src/include/catalog/pg_proc.dat b/src/include/catalog/pg_proc.dat index 0345118cdb5..eb3c1a88d14 100644 --- a/src/include/catalog/pg_proc.dat +++ b/src/include/catalog/pg_proc.dat @@ -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', |