Re: BUG #15565: truncate bug with tables which have temp table inherited

Поиск
Список
Период
Сортировка
От David Rowley
Тема Re: BUG #15565: truncate bug with tables which have temp table inherited
Дата
Msg-id CAKJS1f-bXtPpxpy=TvbJSX_418JQh=Dg9viBa51DiYotLrD30Q@mail.gmail.com
обсуждение исходный текст
Ответ на BUG #15565: truncate bug with tables which have temp table inherited  (PG Bug reporting form <noreply@postgresql.org>)
Список pgsql-bugs
On Tue, 25 Dec 2018 at 05:11, PG Bug reporting form
<noreply@postgresql.org> wrote:
> ```
> create table public.a (id int);
> ```
>
> sesssion a:
>
> ```
> create temp table a (like public.a) inherits(public.a);
> ```
>
> session b:
> ```
> create temp table a (like public.a) inherits(public.a);
> ```
>
> any session:
>
> ```
> postgres=# truncate public.a;
> ERROR:  cannot truncate temporary tables of other sessions

Is this blocking a real-world use case? Or did you just happen to
stumble on this?

-- 
 David Rowley                   http://www.2ndQuadrant.com/
 PostgreSQL Development, 24x7 Support, Training & Services


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

Предыдущее
От: Etsuro Fujita
Дата:
Сообщение: Re: BUG #15552: Unexpected error in COPY to a foreign table in atransaction
Следующее
От: David Rowley
Дата:
Сообщение: Re: BUG #15565: truncate bug with tables which have temp table inherited