Re: jdbc driver performance TODO

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: jdbc driver performance TODO
Дата
Msg-id 8940.1162329634@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: jdbc driver performance TODO  (Kris Jurka <books@ejurka.com>)
Список pgsql-jdbc
Kris Jurka <books@ejurka.com> writes:
> Right now it's not a big deal for the driver because plans don't change,
> but for 8.3 there are plans to do prepared query invalidation when
> underlying tables change.  At that point we'd need to detect and refetch
> metadata.  I'm not sure how a client would detect this change.

We haven't really talked about the semantics of this stuff, but I'm
inclined to think that a prepared statement ought to go into some kind
of "broken" status where it couldn't be invoked, if a change occurs that
would force a change in the output column set.  Otherwise you could have
situations where a client does Describe Statement followed (almost)
immediately by Execute and gets inconsistent results.  I think we really
want the auto-replan facility to handle things like addition of a new
index or availability of new ANALYZE stats --- having it automatically
propagate things like an ALTER COLUMN TYPE seems a good bit more
questionable.

            regards, tom lane

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

Предыдущее
От: Kris Jurka
Дата:
Сообщение: Re: jdbc driver performance TODO
Следующее
От: "Simon Riggs"
Дата:
Сообщение: Re: jdbc driver performance TODO