Re: [HACKERS] psql nested queries with 2000+ records - Mailing list pgsql-hackers

From Coronach
Subject Re: [HACKERS] psql nested queries with 2000+ records
Date
Msg-id 3.0.5.32.19980320172450.007e3b30@diety.conclave.org
Whole thread Raw
In response to Re: [HACKERS] psql nested queries with 2000+ records  (Bruce Momjian <maillist@candle.pha.pa.us>)
Responses Re: [HACKERS] psql nested queries with 2000+ records  (Bruce Momjian <maillist@candle.pha.pa.us>)
List pgsql-hackers
At 12:24 PM 3/20/98 -0500, Bruce Momjian wrote:

>Very strange.  15+ minutes?  Wow, that is terrible, even longer than a
>sequential scan of the table.  Try EXPLAIN and tell us what it says in
>the two cases.

This is within the 2717 record database.

explain select name from games where name in (select name from games where
name like 'A%');

NOTICE:  QUERY PLAN:

Seq Scan on games  (cost=207.95 size=446 width=12)
  SubPlan
    ->  Seq Scan on games  (cost=207.95 size=1 width=12)

NOTICE:  QUERY PLAN:

Seq Scan on games  (cost=207.95 size=446 width=12)
  SubPlan
    ->  Seq Scan on games  (cost=207.95 size=1 width=12)

EXPLAIN

This is within the 24 record database of the same type of data

explain select name from games where name in (select name from game
s where name like 'A%');
NOTICE:  QUERY PLAN:

Seq Scan on games  (cost=207.95 size=446 width=12)
  SubPlan
    ->  Seq Scan on games  (cost=207.95 size=1 width=12)

NOTICE:  QUERY PLAN:

Seq Scan on games  (cost=207.95 size=446 width=12)
  SubPlan
    ->  Seq Scan on games  (cost=207.95 size=1 width=12)

EXPLAIN

Obviously, I get the same information, any suggestions?

-Coronach@hill-b-073.resnet.purdue.edu


pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: Added Having Clause
Next
From: The Hermit Hacker
Date:
Subject: Re: [HACKERS] tonight's mega-patch