Re: pgsql: Clean up role created in new subscription test.

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: pgsql: Clean up role created in new subscription test.
Дата
Msg-id 202311081142.znnn3kgehvqo@alvherre.pgsql
обсуждение исходный текст
Ответ на Re: pgsql: Clean up role created in new subscription test.  (Peter Eisentraut <peter@eisentraut.org>)
Ответы Re: pgsql: Clean up role created in new subscription test.  (Daniel Gustafsson <daniel@yesql.se>)
Список pgsql-hackers
On 2023-Nov-08, Peter Eisentraut wrote:

> I think the earlier idea of just counting roles, tablespaces, etc. before
> and after would be sufficient.

Maybe record global objects in a permanent table in test_setup.sql

create table global_objs as
select 'role', rolname from pg_roles
union all
select 'tablespace', spcname from pg_tablespace;

and at the end (maybe in test tablespace, though it's unrelated but it's
what runs last and drops regress_tablespace), have

(select 'role', rolname from pg_roles
union all
select 'tablespace', spcname from pg_tablespace)
except
select * from global_objs;

and check the expected as empty.

-- 
Álvaro Herrera               48°01'N 7°57'E  —  https://www.EnterpriseDB.com/
"La verdad no siempre es bonita, pero el hambre de ella sí"



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

Предыдущее
От: Dilip Kumar
Дата:
Сообщение: Re: SLRU optimization - configurable buffer pool and partitioning the SLRU lock
Следующее
От: Tommy Pavlicek
Дата:
Сообщение: Re: Commitfest: older Waiting on Author entries