Re: Odd estimation issue with user-defined type

From: Florian Weimer <fweimer(at)bfk(dot)de>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Odd estimation issue with user-defined type
Date: 2010-09-03 15:28:19
Message-ID: 824oe6lucs.fsf@mid.bfk.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

* Tom Lane:

>> Any idea what could cause this? Do I need to provide some estimator
>> function somewhere?
>
> If you haven't, then how would you expect the planner to know that?

Perhaps it's psychic, or there is some trick I don't know about? 8-)

> Less flippantly, you really need to tell us exactly what planner support
> you did provide, before you can expect any intelligent comment. Has the
> type got a default btree opclass?

Yes, I think so (because of CREATE OPERATOR CLASS ... USING btree).

> What selectivity estimators did you attach to the comparison
> operators?

Ah, I see, I probably need to provide a RESTRICT clause in the
operator definition. That should do the trick, and should be fairly
easy to implement in this case.

Sorry, I just missed this piece of information in the documentation, I
should have read it more carefully.

--
Florian Weimer <fweimer(at)bfk(dot)de>
BFK edv-consulting GmbH http://www.bfk.de/
Kriegsstraße 100 tel: +49-721-96201-1
D-76133 Karlsruhe fax: +49-721-96201-99

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Kaloyan Iliev Iliev 2010-09-03 16:16:40 Question about LEFT JOIN and query plan
Previous Message Tom Lane 2010-09-03 15:14:15 Re: Odd estimation issue with user-defined type