[COMMITTERS] pgsql: Get rid of shared_record_typmod_registry_worker_detach;it doesn

Поиск
Список
Период
Сортировка
От Tom Lane
Тема [COMMITTERS] pgsql: Get rid of shared_record_typmod_registry_worker_detach;it doesn
Дата
Msg-id E1dsryt-0001wF-Sc@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Get rid of shared_record_typmod_registry_worker_detach; it doesn't work.

This code is unsafe, as proven by buildfarm failures, because it tries
to access shared memory that might already be gone.  It's also unnecessary,
because we're about to exit the process anyway and so the record type cache
should never be accessed again.  The idea was to lay some foundations for
someday recycling workers --- which would require attaching to a different
shared tupdesc registry --- but that will require considerably more
thought.  In the meantime let's save some bytes by just removing the
nonfunctional code.

Problem identification, and proposal to fix by removing functionality
from the detach function, by Thomas Munro.  I went a bit further by
removing the function altogether.

Discussion: https://postgr.es/m/E1dsguX-00056N-9x@gemulon.postgresql.org

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/71aa4801a8184eb422c6bf51631bda76f1011278

Modified Files
--------------
src/backend/utils/cache/typcache.c | 74 +++++---------------------------------
1 file changed, 9 insertions(+), 65 deletions(-)


--
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: [COMMITTERS] pgsql: Add support for coordinating record typmods among parallel worke
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [COMMITTERS] pgsql: Add support for coordinating record typmods among parallel worke