Optimizer Bug? - Mailing list pgsql-bugs

From Mitterwald, Holger
Subject Optimizer Bug?
Date
Msg-id 3933A648.5EDF9585@coi.de
Whole thread Raw
Responses Re: Optimizer Bug?
Re: Optimizer Bug?
List pgsql-bugs
Hello, I do have a quite suspicious behavior of the Qery-Optimizer (I
think):

If I execute the following statement:
query: explain select k.name, t.lang from kneipe k, typ t where
k.typ=t.typ;
ProcessUtility: explain select k.name, t.lang from kneipe k, typ t where
k.typ=t.typ;
NOTICE:  QUERY PLAN:

Hash Join  (cost=1.20..31.05 rows=413 width=32)
  ->  Seq Scan on kneipe k  (cost=0.00..13.13 rows=413 width=16)
  ->  Hash  (cost=1.16..1.16 rows=16 width=16)
        ->  Seq Scan on typ t  (cost=0.00..1.16 rows=16 width=16)

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

Seems ok to me, but if I insert a (huge) table which is nowhere
referenced (here:"preis"), the
following happens:

query: explain select k.name, t.lang from kneipe k, typ t, preis p where
k.typ=t.typ;
ProcessUtility: explain select k.name, t.lang from kneipe k, typ t,
preis p where k.typ=t.typ;
NOTICE:  QUERY PLAN:

Merge Join  (cost=2948.99..3280.15 rows=673190 width=36)
  ->  Sort  (cost=2917.91..2917.91 rows=26080 width=20)
        ->  Nested Loop  (cost=0.00..746.76 rows=26080 width=20)
              ->  Seq Scan on typ t  (cost=0.00..1.16 rows=16 width=16)
              ->  Seq Scan on preis p  (cost=0.00..30.30 rows=1630
width=4)
  ->  Sort  (cost=31.07..31.07 rows=413 width=16)
        ->  Seq Scan on kneipe k  (cost=0.00..13.13 rows=413 width=16)

The query takes up to 100 times longer although the table "preis" is not
used at all.
I guess the Optimizer gets here something REALLY wrong....

Any tips (besides removing "preis" from the select statement...)?

pgsql-bugs by date:

Previous
From: Ian Grant
Date:
Subject: Bug in libpq large-object interface
Next
From: "Mitterwald, Holger"
Date:
Subject: Re: Optimizer Bug?