Re: wrong search_path being used

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: wrong search_path being used
Дата
Msg-id 21642.1358018978@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: wrong search_path being used  ("Kevin Grittner" <kgrittn@mail.com>)
Ответы Re: wrong search_path being used  (Andres Freund <andres@2ndquadrant.com>)
Список pgsql-bugs
"Kevin Grittner" <kgrittn@mail.com> writes:
> To try to get your function code to work as you expect, the
> language would essentially need to identify which statements could
> be pre-planned, and which would needed to be treated as raw source
> on each execution. That would be tricky to implement, and would
> itself have some run-time cost. At this point we've put the burden
> on the programmer to identify this at the time the code is written,
> rather than adding run-time expense.

I think that the alternative most likely to succeed is to consider any
change in the active value of search_path as forcing replanning of
cached plans.  This wouldn't be that hard to implement but there's
a definite risk of loss of performance due to unnecessary replanning
(since the path change might or might not affect the particular query).
It's also not unlikely that it could break applications that work today,
because they depend -- perhaps without being aware of it -- on the
existing first-path-wins behavior.

Having said that, it seems likely that more people would prefer that
behavior than the existing one.  But it hasn't been clear enough to
justify making such a subtly incompatible change.

            regards, tom lane

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

Предыдущее
От: "Kevin Grittner"
Дата:
Сообщение: Re: wrong search_path being used
Следующее
От: Andres Freund
Дата:
Сообщение: Re: wrong search_path being used