Re: calling function

Поиск
Список
Период
Сортировка
От James Robinson
Тема Re: calling function
Дата
Msg-id C35AA7B8-6D22-11D8-971F-000A9566A412@socialserve.com
обсуждение исходный текст
Ответ на calling function  (Bhushan Bhangale <bbhangale@Lastminute.com>)
Список pgsql-jdbc
Standard queries in plpgsql are parsed / planned only once per backend
session, and the plan stores the object ids of the relations used in
the query, not the names. So, when you drop the table, the cached plan
becomes invalid. If your client disconnects / reconnects, then calls
the function, it will be parsed / planned again, and all is well --
that one time.

If you want to execute queries without having plans cached, you need to
make use of the execute command, the technique specified in section
37.6.4 of the postgres manual:

    http://www.postgresql.org/docs/7.4/static/plpgsql-statements.html

But, as Tom said, you can probably rephrase the function to not use a
temp table anymore.

----
James Robinson
Socialserve.com


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

Предыдущее
От: Sean Elliott
Дата:
Сообщение: Passing date and smallint (etc) parameters to functions from Java
Следующее
От: Bhushan Bhangale
Дата:
Сообщение: Re: calling function