SQL99 Hierarchical queries

Поиск
Список
Период
Сортировка
От Evgen Potemkin
Тема SQL99 Hierarchical queries
Дата
Msg-id 44458e32050224020236ac358f@mail.gmail.com
обсуждение исходный текст
Ответы Re: SQL99 Hierarchical queries  (Christopher Kings-Lynne <chriskl@familyhealth.com.au>)
Re: SQL99 Hierarchical queries  (Pavel Stehule <stehule@kix.fsv.cvut.cz>)
Re: SQL99 Hierarchical queries  (Mike Benoit <ipso@snappymail.ca>)
Re: SQL99 Hierarchical queries  (Christopher Kings-Lynne <chriskl@familyhealth.com.au>)
Список pgsql-hackers
Hi hackers!

I have done initial implementation of SQL99 WITH clause (attached).
It's now only for v7.3.4 and haven't a lot of checks and restrictions.
It can execute only simple WITH queries like
WITH tree AS (SELECT id,pnt,name,1::int AS level FROM t WHERE id=0
UNION SELECT t.id,t.pnt,t.name,tree.level+1 FROM t JOIN tree ON
tree.id=t.pnt ) SELECT * FROM tree;
It would be great if someone with knowledge of Pg internals can make a
kind of code review and make some advices how to better implement all
this.

Regards, Evgen.

Вложения

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

Предыдущее
От: Christopher Kings-Lynne
Дата:
Сообщение: Re: Finding if old transactions are running...
Следующее
От: Christopher Kings-Lynne
Дата:
Сообщение: Re: SQL99 Hierarchical queries