Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 2ed19a4

Browse filesBrowse files
committed
Set gen_random_uuid() to volatile
It was set to immutable. This was a mistake in the initial commit (5925e55). Reported-by: hubert depesz lubaczewski <depesz@depesz.com> Discussion: https://www.postgresql.org/message-id/flat/20200218185452.GA8710%40depesz.com
1 parent 5b618e1 commit 2ed19a4
Copy full SHA for 2ed19a4

File tree

Expand file treeCollapse file tree

2 files changed

+3
-3
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+3
-3
lines changed

‎src/include/catalog/catversion.h

Copy file name to clipboardExpand all lines: src/include/catalog/catversion.h
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@
5353
*/
5454

5555
/* yyyymmddN */
56-
#define CATALOG_VERSION_NO 202002071
56+
#define CATALOG_VERSION_NO 202002191
5757

5858
#endif

‎src/include/catalog/pg_proc.dat

Copy file name to clipboardExpand all lines: src/include/catalog/pg_proc.dat
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8421,8 +8421,8 @@
84218421
proname => 'uuid_hash_extended', prorettype => 'int8',
84228422
proargtypes => 'uuid int8', prosrc => 'uuid_hash_extended' },
84238423
{ oid => '3432', descr => 'generate random UUID',
8424-
proname => 'gen_random_uuid', proleakproof => 't', prorettype => 'uuid',
8425-
proargtypes => '', prosrc => 'gen_random_uuid' },
8424+
proname => 'gen_random_uuid', proleakproof => 't', provolatile => 'v',
8425+
prorettype => 'uuid', proargtypes => '', prosrc => 'gen_random_uuid' },
84268426

84278427
# pg_lsn
84288428
{ oid => '3229', descr => 'I/O',

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.