Re: Query works when kludged, but would prefer "best practice" solution

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Query works when kludged, but would prefer "best practice" solution
Дата
Msg-id 24950.1190086191@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Query works when kludged, but would prefer "best practice" solution  ("Merlin Moncure" <mmoncure@gmail.com>)
Ответы Re: Query works when kludged, but would prefer "best practice" solution  ("Carlo Stonebanks" <stonec.register@sympatico.ca>)
Список pgsql-performance
"Merlin Moncure" <mmoncure@gmail.com> writes:
> On 9/17/07, Carlo Stonebanks <stonec.register@sympatico.ca> wrote:
>> Please see the section marked as "PROBLEM" in "ORIGINAL QUERY" plan below.

> This looks like it might be the problem tom caught and rigged a solution to:
> http://people.planetpostgresql.org/dfetter/index.php?/archives/134-PostgreSQL-Weekly-News-September-03-2007.html
> (look fro band-aid).

No, fraid not, that was about misestimation of outer joins, and I see no
outer join here.

What I do see is misestimation of a set-returning-function's output:

  ->  Function Scan on zips_in_mile_range  (cost=0.00..12.50 rows=1000 width=40) (actual time=149.850..149.920 rows=66
loops=1)

There's not any very nice way to improve that in existing releases :-(.
In 8.3 it will be possible to add a ROWS option to function definitions
to replace the default "1000 rows" estimate with some other number, but
that still helps little if the number of result rows is widely variable.

As far as kluges go: rather than kluging conditions affecting unrelated
tables, maybe you could put in a dummy constraint on the function's
output --- ie, a condition you know is always true, but the planner
won't know that, and will scale down its result-rows estimate accordingly.

            regards, tom lane

В списке pgsql-performance по дате отправления:

Предыдущее
От: "Carlo Stonebanks"
Дата:
Сообщение: Re: Query works when kludged, but would prefer "best practice" solution
Следующее
От: "soni de"
Дата:
Сообщение: Re: Regarding COPY command from Postgres 8.2.0