Re: TYPE of TEMP table does not seem to get set

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: TYPE of TEMP table does not seem to get set
Дата
Msg-id 4379.1334607089@sss.pgh.pa.us
обсуждение исходный текст
Ответ на TYPE of TEMP table does not seem to get set  (Bill MacArthur <webmaster@dhs-club.com>)
Ответы Re: TYPE of TEMP table does not seem to get set  (Bill MacArthur <webmaster@dhs-club.com>)
Список pgsql-bugs
Bill MacArthur <webmaster@dhs-club.com> writes:
> I have a view "configurations.tp_transactions" which is a blend of many tables using INNER and LEFT JOINs. I want to
populatea temp table from which I can obtain the data and programmatically write queries to operate on that data using
certainPLPGSQL functions in a uniform fashion. I have several functions which all expect a single argument of the type
"configurations.tp_transactions".

I think you would need to create the temp table as a child of the main
table for this to work.  As you're doing it, the rowtype of the temp
table is independent of the main (and the fact that they happen to have
the same columns is NOT good enough to make it acceptable to a function
declared to take the main table's rowtype).

            regards, tom lane

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

Предыдущее
От: Bill MacArthur
Дата:
Сообщение: TYPE of TEMP table does not seem to get set
Следующее
От: Bill MacArthur
Дата:
Сообщение: Re: TYPE of TEMP table does not seem to get set