Re: return query/composite types

Поиск
Список
Период
Сортировка
От Merlin Moncure
Тема Re: return query/composite types
Дата
Msg-id b42b73150902201226v28a81f38kd2122f8fcf356f89@mail.gmail.com
обсуждение исходный текст
Ответ на Re: return query/composite types  (Merlin Moncure <mmoncure@gmail.com>)
Список pgsql-hackers
On Fri, Feb 20, 2009 at 3:25 PM, Merlin Moncure <mmoncure@gmail.com> wrote:
> On Fri, Feb 20, 2009 at 3:00 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
>> Merlin Moncure <mmoncure@gmail.com> writes:
>>> create table foo(a int, b int);
>>> postgres=# create function rfoo() returns setof foo as $$ begin return
>>> query select foo from foo; end; $$ language plpgsql;
>>
>> Use "select * from ..." instead.
>
> Yeah...I was thinking maybe that shouldn't be required:
> 1. it's illogical and conflicts with regular non 'returns query'
> semantics (declare foo, assign, return)
> 2. if 'foo' is result of set returning function (like unnest), you
> need to make extra subquery to prevent that function from executing
> lots of extra times.
> e.g.
> select unnest(foo) from <something> will unnest the set six times if

er,
select (unnest(foo)).* from <something> will unnest the set six times if                                ^^^


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

Предыдущее
От: Merlin Moncure
Дата:
Сообщение: Re: return query/composite types
Следующее
От: Tom Lane
Дата:
Сообщение: Re: return query/composite types