rows in explain - Mailing list pgsql-admin

From Lee Wu
Subject rows in explain
Date
Msg-id E1F0E4D89D8FA44789DFC065C8E755281A36B6@mxlhq-exch01.corp.mxlogic.com
Whole thread Raw
Responses Re: rows in explain  (Michael Fuhr <mike@fuhr.org>)
List pgsql-admin

Hi all,

 

I want to find out how PG gets rows when it explains a query.

For example, when I issue:

 

explain select count(*) from pg_class where relname='pg_class';

                          QUERY PLAN

--------------------------------------------------------------

 Aggregate  (cost=4.55..4.55 rows=1 width=0)

   ->  Seq Scan on pg_class  (cost=0.00..4.55 rows=1 width=0)

         Filter: (relname = 'pg_class'::name)

(3 rows)

 

Where and how PG get “rows=1”?

 

Thank you!

pgsql-admin by date:

Previous
From: "Luca Stancapiano"
Date:
Subject: problem on ssl client authentication
Next
From: Michael Fuhr
Date:
Subject: Re: rows in explain