Re: Transactional-DDL DROP/CREATE TABLE

Поиск
Список
Период
Сортировка
От Kevin Grittner
Тема Re: Transactional-DDL DROP/CREATE TABLE
Дата
Msg-id CACjxUsP_oDhxghKq4Ls--ZsORXZJ4=yO=oV=jiO2J6sAFB1HBg@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Transactional-DDL DROP/CREATE TABLE  (Adrian Klaver <adrian.klaver@aklaver.com>)
Ответы Re: Transactional-DDL DROP/CREATE TABLE  (Geoff Winkless <pgsqladmin@geoff.dj>)
Список pgsql-general
On Thu, Oct 6, 2016 at 9:31 AM, Adrian Klaver <adrian.klaver@aklaver.com> wrote:

> This is how I can trigger the ERROR:
>
> Session 1:
>
> test=# begin ;
> BEGIN
> test=# drop table if exists ddl_test;
> NOTICE:  table "ddl_test" does not exist, skipping
> DROP TABLE
> test=# create table ddl_test(id int);
> CREATE TABLE
> test=# commit ;
> COMMIT
>
> Session 2 (concurrent to session1):
>
> test=# begin ;
> BEGIN
> test=# drop table if exists ddl_test;
> NOTICE:  table "ddl_test" does not exist, skipping
> DROP TABLE
> test=# create table ddl_test(id int);
> ERROR:  duplicate key value violates unique constraint
> "pg_type_typname_nsp_index"
> DETAIL:  Key (typname, typnamespace)=(ddl_test, 2200) already exists.
> test=# commit ;
> ROLLBACK

I recommend using a transactional advisory lock to serialize these.

--
Kevin Grittner
EDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


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

Предыдущее
От: Francisco Olarte
Дата:
Сообщение: Re: Transactional-DDL DROP/CREATE TABLE
Следующее
От: Francisco Olarte
Дата:
Сообщение: Re: Transactional-DDL DROP/CREATE TABLE