pgsql: Unmark gen_random_uuid() function leakproof. - Mailing list pgsql-committers

From Masahiko Sawada
Subject pgsql: Unmark gen_random_uuid() function leakproof.
Date
Msg-id E1tLRZl-002ERf-Pu@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Unmark gen_random_uuid() function leakproof.

The functions without arguments don't need to be marked
leakproof. This commit unmarks gen_random_uuid() leakproof for
consistency with upcoming UUID generation functions. Also, this commit
adds a regression test to prevent reintroducing such cases.

Bump catalog version.

Reported-by: Peter Eisentraut
Reviewed-by: Andres Freund
Discussion: https://postgr.es/m/CAD21AoBE1ePPWY1NQEgk3DkqjYzLPZwYTzCySHm0e%2B9a69PfZw%40mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/398d3e3b5b8f4c81795e07655f28036839cc0550

Modified Files
--------------
src/include/catalog/catversion.h         | 2 +-
src/include/catalog/pg_proc.dat          | 2 +-
src/test/regress/expected/opr_sanity.out | 7 ++++++-
src/test/regress/sql/opr_sanity.sql      | 7 +++++++
4 files changed, 15 insertions(+), 3 deletions(-)


pgsql-committers by date:

Previous
From: Daniel Gustafsson
Date:
Subject: pgsql: Fix a memory leak in dumping functions with TRANSFORMs
Next
From: Nathan Bossart
Date:
Subject: pgsql: Use pg_memory_is_all_zeros() in pgstatfuncs.c.