Re: Predicate information in EXPLAIN Command

From: Heikki Linnakangas <hlinnakangas(at)vmware(dot)com>
To: Sameer Thakur <samthakur74(at)gmail(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Predicate information in EXPLAIN Command
Date: 2013-05-14 09:29:51
Message-ID: 5192040F.8060502@vmware.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On 14.05.2013 12:23, Sameer Thakur wrote:
> Hello,
> I am trying to find predicate information for a given SQL query plan as
> provided by Oracle using DBMS_XPLAN. I am looking at the EXPLAIN command
> for getting this query plan information, with no luck so far.
>
> Does the EXPLAIN command provide predicate information?

Sure. For example,

postgres=# explain select * from a where id = 123;
QUERY PLAN
---------------------------------------------------
Seq Scan on a (cost=0.00..40.00 rows=12 width=4)
Filter: (id = 123)
(2 rows)

The predicate is right there on the Filter line. Likewise for a join:

postgres=# explain select * from a, b where a.id = b.id;
QUERY PLAN
-----------------------------------------------------------------
Hash Join (cost=64.00..134.00 rows=2400 width=8)
Hash Cond: (a.id = b.id)
-> Seq Scan on a (cost=0.00..34.00 rows=2400 width=4)
-> Hash (cost=34.00..34.00 rows=2400 width=4)
-> Seq Scan on b (cost=0.00..34.00 rows=2400 width=4)
(5 rows)

The join predicate is on the Hash Cond line.

- Heikki

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Robert Haas 2013-05-14 12:12:55 Re: RT3.4 query needed a lot more tuning with 9.2 than it did with 8.1
Previous Message Sameer Thakur 2013-05-14 09:23:48 Predicate information in EXPLAIN Command