cached plans in plpgsql

Поиск
Список
Период
Сортировка
От Kuba Ouhrabka
Тема cached plans in plpgsql
Дата
Msg-id dj88aq$kme$1@news.hub.org
обсуждение исходный текст
Список pgsql-performance
Hi,

is there an easy way to flush all cached query plans in pl/pgsql
functions? I've long running sessions where data are changing and the
plans become inaccurate after a while. I can imagine something like
recreating all pl/pgsql functions. I can recreate them from sql source
files but I'd prefer recreating them inside the database without
accessing files outside. I can think only of one way - reconstructing
function source code from pg_proc and EXECUTEing it. But it's not the
cleanest solution (there isn't saved the actual source code anywhere so
there could be problems with quoting etc.). Can you see any other
possibility? How do you solve this problem? [And yes, I don't want to
re-connect...]

Thanks,

Kuba




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

Предыдущее
От: "Steinar H. Gunderson"
Дата:
Сообщение: Re: Materializing a sequential scan
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [HACKERS] tuning seqscan costs