Re: Poor Performance for large queries in functions

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Poor Performance for large queries in functions
Дата
Msg-id 22682.1096434647@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Poor Performance for large queries in functions  (John Meinel <john@johnmeinel.com>)
Список pgsql-hackers-win32
John Meinel <john@johnmeinel.com> writes:
> ... However, if I try to
> bundle this query up into a server side function, it runs very slow (10
> seconds). I'm trying to figure out why, but since I can't run EXPLAIN
> ANALYZE inside a function, I don't really know what else to do.

A parameterized query inside a function is basically the same as a
PREPARE'd query with parameters at the SQL level.  So you can
investigate what's happening here with

    PREPARE foo(int) AS
        SELECT * FROM object WHERE id in (
            SELECT id FROM data_t WHERE project_id = $1
        UNION SELECT ... ;

    EXPLAIN ANALYZE EXECUTE foo(48542);

I'm not sure where the problem is either, so please do send along the
results.

            regards, tom lane

PS: pgsql-performance would be a more appropriate venue for this
discussion.

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

Предыдущее
От: John Meinel
Дата:
Сообщение: Poor Performance for large queries in functions
Следующее
От: Oliver D.
Дата:
Сообщение: Win32 libpq : Static Link ?