Re: plpgsql: check domain constraints

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: plpgsql: check domain constraints
Дата
Msg-id 25708.1136782612@sss.pgh.pa.us
обсуждение исходный текст
Ответ на plpgsql: check domain constraints  (Neil Conway <neilc@samurai.com>)
Ответы Re: plpgsql: check domain constraints
Список pgsql-patches
Neil Conway <neilc@samurai.com> writes:
> (2) adjust pl/pgsql to fetch the constraints associated with the
> function's return value. Because this is expensive, the constraints are
> fetched once per session, when the function is compiled.

We have gone out of our way to make sure that domain constraint checking
responds promptly (ie, within one query) to updates of the domain
definition.  Caching at the session level in plpgsql would be a
significant regression from that, and I don't think it's acceptable.
If you had a way of invalidating the cache when needed, it'd be great
... but not without that.

> I also made a few semi-related cleanups. In pl_exec.c, it seems to me
> that estate.eval_econtext MUST be non-NULL during the guts of both
> plpgsql_exec_trigger() and plpgsql_exec_function(). Therefore checking
> that estate.eval_econtext is non-NULL when cleaning up is unnecessary
> (line 649 and 417 in current sources, respectively), so I've removed the
> checks. Am I missing something?

The code doesn't currently assume that, and it doesn't seem to me that
saving one simple if-test is a reason to add the assumption ...

            regards, tom lane

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

Предыдущее
От: Neil Conway
Дата:
Сообщение: plpgsql: check domain constraints
Следующее
От: Neil Conway
Дата:
Сообщение: Re: plpgsql: check domain constraints