pgsql: Fix a problem with parallel workers being unable to restore role

Поиск
Список
Период
Сортировка
От Robert Haas
Тема pgsql: Fix a problem with parallel workers being unable to restore role
Дата
Msg-id E1Zn7Cc-0001dz-Lv@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix a problem with parallel workers being unable to restore role.

check_role() tries to verify that the user has permission to become the
requested role, but this is inappropriate in a parallel worker, which
needs to exactly recreate the master's authorization settings.  So skip
the check in that case.

This fixes a bug in commit 924bcf4f16d54c55310b28f77686608684734f42.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/82b37765c76b8b2daf6cad3dfb5e5b4a2776d56f

Modified Files
--------------
src/backend/access/transam/parallel.c |    7 +++++++
src/backend/commands/variable.c       |    8 ++++++--
src/include/access/parallel.h         |    1 +
3 files changed, 14 insertions(+), 2 deletions(-)


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

Предыдущее
От: Robert Haas
Дата:
Сообщение: pgsql: Fix a problem with parallel workers being unable to restore role
Следующее
От: Robert Haas
Дата:
Сообщение: pgsql: Mark more functions parallel-restricted or parallel-unsafe.