From: | Prabhat Sahu <prabhat(dot)sahu(at)enterprisedb(dot)com> |
---|---|
To: | PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Query got Killed with CTE. |
Date: | 2017-10-17 13:18:53 |
Message-ID: | CANEvxPo2+e-QqTxHRh_q+dFANi9dPof9t_A=Q7wgfCuUi3sgUw@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Hi,
While quering with CTE against PG HEAD , i found that query got killed with
this below error logs
-- Machine Configuration: (d1.xlarge) CUPs : 8 , RAM : 16GB , SIze : 640GB
postgres=# with x as (select 5 c1 from generate_series(1,1000000) x) select
* from x x1 join x x2 using(c1);
Killed
2017-10-17 14:12:33.558 BST [949] LOG: could not send data to client:
Broken pipe
2017-10-17 14:12:33.558 BST [949] STATEMENT: with x as (select 5 c1 from
generate_series(1,1000000) x) select * from x x1 join x x2 using(c1);
2017-10-17 14:12:33.559 BST [949] FATAL: connection to client lost
2017-10-17 14:12:33.559 BST [949] STATEMENT: with x as (select 5 c1 from
generate_series(1,1000000) x) select * from x x1 join x x2 using(c1);
*Thanks & Regards,*
*Prabhat Kumar Sahu*
Mob: 7758988455
Skype ID: prabhat.sahu1984
www.enterprisedb.co <http://www.enterprisedb.com/>m
<http://www.enterprisedb.com/>
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2017-10-17 13:34:24 | Re: SIGSEGV in BRIN autosummarize |
Previous Message | Robert Haas | 2017-10-17 13:16:20 | Re: PATCH: enabling parallel execution for cursors explicitly (experimental) |