gen_random_uuid() is immutable in Pg 13devel

Поиск
Список
Период
Сортировка
От hubert depesz lubaczewski
Тема gen_random_uuid() is immutable in Pg 13devel
Дата
Msg-id 20200218185452.GA8710@depesz.com
обсуждение исходный текст
Ответы Re: gen_random_uuid() is immutable in Pg 13devel  (Alvaro Herrera <alvherre@2ndquadrant.com>)
Re: gen_random_uuid() is immutable in Pg 13devel  (Peter Eisentraut <peter.eisentraut@2ndquadrant.com>)
Список pgsql-bugs
Hi,
I noticed that get_random_uuid() from pgcrypt is marked as immutable.

Up to 12.2 it was volatile, and in 13 it became immutable.

This leads to "interesting" change, that:

select gen_random_uuid() from generate_series(1,10);

returns 10 different uuids before 13, and 10 identical ones on 13devel.

It looks that commit 5925e5549890416bcf588334d9d0bc99f8ad6c7f forgot to
mark the function as volatile. Not sure if it was intentional.

Best regards,

depesz




В списке pgsql-bugs по дате отправления:

Предыдущее
От: Stephen Frost
Дата:
Сообщение: Re: DB running out of memory issues after upgrade
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: gen_random_uuid() is immutable in Pg 13devel