Re: [sqlsmith] Failed assertion in postgres_fdw/deparse.c:1116

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема Re: [sqlsmith] Failed assertion in postgres_fdw/deparse.c:1116
Дата
Msg-id CAB7nPqR_mJ60u3kyPeE__7o07AdADnS0G8BgkKCW52YmkP=f3Q@mail.gmail.com
обсуждение исходный текст
Ответ на [sqlsmith] Failed assertion in postgres_fdw/deparse.c:1116  (Andreas Seltenreich <seltenreich@gmx.de>)
Список pgsql-hackers
On Sun, Jun 5, 2016 at 11:01 PM, Andreas Seltenreich <seltenreich@gmx.de> wrote:
> Creating some foreign tables via postgres_fdw in the regression db of
> master as of de33af8, sqlsmith triggers the following assertion:
>
>     TRAP: FailedAssertion("!(((((const Node*)(var))->type) == T_Var))", File: "deparse.c", Line: 1116)
>
> gdb says var is holding a T_PlaceHolderVar instead.  In a build without
> assertions, it leads to an error later:
>
>     ERROR:  cache lookup failed for type 0
>
> Recipe:
>
> --8<---------------cut here---------------start------------->8---
> create extension postgres_fdw;
> create server myself foreign data wrapper postgres_fdw;
> create schema fdw_postgres;
> create user mapping for public server myself options (user :'USER');
> import foreign schema public from server myself into fdw_postgres;
> select subq_0.c0 as c0 from
>        (select 31 as c0 from fdw_postgres.a as ref_0
>               where 93 >= ref_0.aa) as subq_0
>        right join fdw_postgres.rtest_vview5 as ref_1
>        on (subq_0.c0 = ref_1.a )
>        where 92 = subq_0.c0;
> --8<---------------cut here---------------end--------------->8---

Open item for 9.6 added.
-- 
Michael



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

Предыдущее
От: Amit Langote
Дата:
Сообщение: Re: [sqlsmith] Failed assertion in postgres_fdw/deparse.c:1116
Следующее
От: Albe Laurenz
Дата:
Сообщение: Re: Prepared statements and generic plans