Re: assertion failure w/extended query protocol

Поиск
Список
Период
Сортировка
От Andres Freund
Тема Re: assertion failure w/extended query protocol
Дата
Msg-id 201210200046.15296.andres@2ndquadrant.com
обсуждение исходный текст
Ответ на Re: assertion failure w/extended query protocol  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
On Saturday, October 20, 2012 12:37:54 AM Tom Lane wrote:
> Andres Freund <andres@2ndquadrant.com> writes:
> > So as far as I can see the new logic is correct? A quick look & test
> > seems to confirm that.
> 
> I think the real problem here is just that the code was trying to be too
> specific, and while your version might be more correct it's not doing
> anything to fix that misjudgment.  We should just make the
> CreateTableAsStmt case look like the ExplainStmt case, viz
> 
>             Assert(IsA(qry, Query));
>             if (qry->commandType == CMD_UTILITY)
>                 return UtilityContainsQuery(qry->utilityStmt);
>             return qry;

FWIW commit + general principle looks good to me.

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



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

Предыдущее
От: Andres Freund
Дата:
Сообщение: Re: assertion failure w/extended query protocol
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Always include encoding of database in pg_dumpall