Is there way to detect uncommitted 'new table' in pg_class?

Поиск
Список
Период
Сортировка
От Hubert Zhang
Тема Is there way to detect uncommitted 'new table' in pg_class?
Дата
Msg-id CAB0yrennBDdoW=nwsGd-v=QPpL4XqKKJ7RrOrdfJnZNGKmpoWA@mail.gmail.com
обсуждение исходный текст
Ответы Re: Is there way to detect uncommitted 'new table' in pg_class?
Список pgsql-hackers
Hi all,

In PG READ UNCOMMITTED is treated as READ COMMITTED
But I have a requirement to read dirty table. Is there way to detect table which is created in other uncommitted transaction?

T1:
BEGIN;
create table a(i int);

T2: 
select * from pg_class where relname='a';
could return table a?
--
Thanks

Hubert Zhang

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

Предыдущее
От: Nikolay Shaplov
Дата:
Сообщение: Re: [PATCH][PROPOSAL] Add enum releation option type
Следующее
От: Dmitry Dolgov
Дата:
Сообщение: Re: Pluggable Storage - Andres's take