Re: Common Table Expressions (WITH RECURSIVE) patch

Поиск
Список
Период
Сортировка
От Gregory Stark
Тема Re: Common Table Expressions (WITH RECURSIVE) patch
Дата
Msg-id 87wsh3uhnx.fsf@oxford.xeocode.com
обсуждение исходный текст
Ответ на Re: Common Table Expressions (WITH RECURSIVE) patch  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Common Table Expressions (WITH RECURSIVE) patch
Список pgsql-hackers
Tom Lane <tgl@sss.pgh.pa.us> writes:

> Yeah, I'd been running into that issue too.  Adding an explicit pointer
> to the CTE into the RTE doesn't work because it renders the parse tree
> un-copiable (at least without something a lot more sophisticated than
> copyObject; and saving/loading rule parsetrees would be tough too).

Well the alternative to direct pointers is as you did with subqueries, turning
the set into a flat array and storing indexes into the array. I'm not sure if
that applies here or not.

--  Gregory Stark EnterpriseDB          http://www.enterprisedb.com Ask me about EnterpriseDB's PostGIS support!


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Common Table Expressions (WITH RECURSIVE) patch
Следующее
От: Markus Wanner
Дата:
Сообщение: Re: Proposal: move column defaults into pg_attribute along with attacl