BUG #17487: Parallel execution fails when original user is removed

Поиск
Список
Период
Сортировка
От PG Bug reporting form
Тема BUG #17487: Parallel execution fails when original user is removed
Дата
Msg-id 17487-b44f2aa8ab499e20@postgresql.org
обсуждение исходный текст
Ответы Re: BUG #17487: Parallel execution fails when original user is removed  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
The following bug has been logged on the website:

Bug reference:      17487
Logged by:          Kirill Kravtsov
Email address:      kravtsov.k@gmail.com
PostgreSQL version: 14.3
Operating system:   Centos 7
Description:

We're using temporary credentials to access the DB. The temporary
credentials are granted a role and automatically become that role on
connect. As soon as temporary credential is removed while the connection is
still alive, any regular query would continue to work, however, a parallel
query would cause an error:

ERROR:  role with OID XXXXXX does not exist
CONTEXT:  parallel worker

Reproduction steps:

Session 1 (postgres):

$ psql -U postgres
create role testparallelrole;
create role testparalleluser with login password '1';
grant testparallelrole to testparalleluser;
alter role testparalleluser set role testparallelrole;

Session 2 (testparalleluser):

$ psql -U testparalleluser -d postgres;
show role; -- shows testparallelrole
set force_parallel_mode TO 1;
select count(*) from pg_class ; -- ok

Session 1 (postgres):

drop role testparalleluser;

Session 2 (testparalleluser):

set force_parallel_mode TO 0;
select count(*) from pg_class ; -- ok
set force_parallel_mode TO 1;
select count(*) from pg_class ; -- fails


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

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: Re: BUG #17485: Records missing from Primary Key index when doing REINDEX INDEX CONCURRENTLY
Следующее
От: Giorgio Saviane
Дата:
Сообщение: Re: BUG #17449: Disk space not released