Re: Problem with transaction in functions and tempory tables

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: Problem with transaction in functions and tempory tables
Дата
Msg-id 20040722102557.V4811@megazone.bigpanda.com
обсуждение исходный текст
Ответ на Problem with transaction in functions and tempory tables  (Gerardo Castillo <gcastillo@ice.co.cr>)
Список pgsql-sql
On Thu, 22 Jul 2004, Gerardo Castillo wrote:

> Hello,
>
> I'm using PostgreSQL 7.4
>
> I have a function wich use temporary tables. I read about temporary tables
> and they exists during the session.
> But i have to call this function many times in the same sesion with
> diferents parameters and expecting different results. So, there is a problem
> because the temporary table already exists during the second execution of
> the funcition.

If you're going to use temporary tables in a plpgsql function, you really
need to use the table only through EXECUTE commands so that the plans
don't get saved.


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: LIKE on index not working
Следующее
От: Joe Conway
Дата:
Сообщение: Re: Converting a plperlu function to a plpgsql function