Re: backend crash with certain statements/tables

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: backend crash with certain statements/tables
Дата
Msg-id 29901.1078249571@sss.pgh.pa.us
обсуждение исходный текст
Ответ на backend crash with certain statements/tables  (Jeff Bohmer <bohmer@visionlink.org>)
Ответы Re: backend crash with certain statements/tables
Список pgsql-bugs
Jeff Bohmer <bohmer@visionlink.org> writes:
> Running any of these statements on my database causes the backend to
> crash (example from PG log below):

Crash confirmed here.  Seems to be a side-effect of the 7.4 optimization
that tries to avoid "unnecessary" projection steps.  In the "SELECT *
FROM foo LIMIT" case, the scan plan decides it need not do projection,
but actually one must occur (else heap_insert will scribble on the
source table :-().  The junkfilter code in execMain.c is supposed to
catch this situation, but it's fooled by the presence of a LIMIT step.
There may be some related cases, need to think more.

I should have a patch later today.

            regards, tom lane

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

Предыдущее
От: Jeff Bohmer
Дата:
Сообщение: backend crash with certain statements/tables
Следующее
От: Jeff Bohmer
Дата:
Сообщение: Re: backend crash with certain statements/tables