Re: [HACKERS] Something broken around FDW connection close

2017-03-31 Thread David Rowley
On 31 March 2017 at 16:32, Etsuro Fujita wrote: > On 2017/03/31 8:28, David Rowley wrote: > >> create table t (a int, b int); >> insert into t1 select x/100,x/100 from generate_series(1,10) x; >> create extension if not exists postgres_fdw; >> create server test_server foreign data wrapper p

Re: [HACKERS] Something broken around FDW connection close

2017-03-30 Thread Kyotaro HORIGUCHI
At Fri, 31 Mar 2017 12:32:39 +0900, Etsuro Fujita wrote in > On 2017/03/31 8:28, David Rowley wrote: .. > > create server test_server foreign data wrapper postgres_fdw options > > (host 'localhost', port '5432', dbname 'postgres'); > > create foreign table ft_t (a int,b int) server test_server;

Re: [HACKERS] Something broken around FDW connection close

2017-03-30 Thread Etsuro Fujita
On 2017/03/31 8:28, David Rowley wrote: create table t (a int, b int); insert into t1 select x/100,x/100 from generate_series(1,10) x; create extension if not exists postgres_fdw; create server test_server foreign data wrapper postgres_fdw options (host 'localhost', port '5432', dbname 'post

[HACKERS] Something broken around FDW connection close

2017-03-30 Thread David Rowley
create table t (a int, b int); insert into t1 select x/100,x/100 from generate_series(1,10) x; create extension if not exists postgres_fdw; create server test_server foreign data wrapper postgres_fdw options (host 'localhost', port '5432', dbname 'postgres'); create foreign table ft_t (a int,b