Re: [HACKERS] T_CustomScan on ExplainTargetRel

2014-11-20 Thread Tom Lane
Kouhei Kaigai writes: > The attached obvious patch adds T_CustomScan on case-switch of > ExplainTargetRel() that was oversight. Applied, thanks. regards, tom lane -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription

Re: [HACKERS] T_CustomScan on ExplainTargetRel

2014-11-19 Thread Kouhei Kaigai
@postgresql.org] On Behalf Of Kouhei Kaigai > Sent: Thursday, November 20, 2014 3:42 PM > To: pgsql-hackers@postgresql.org > Subject: [HACKERS] T_CustomScan on ExplainTargetRel > > Hello, > > The attached obvious patch adds T_CustomScan on case-switch of > ExplainTargetRe

[HACKERS] T_CustomScan on ExplainTargetRel

2014-11-19 Thread Kouhei Kaigai
Hello, The attached obvious patch adds T_CustomScan on case-switch of ExplainTargetRel() that was oversight. It looked like working, but what it did was just printing referenced name, instead of table name. postgres=# explain select ctid, * from t0 hoge where ctid > '(50,0)'::tid;