Re: [HACKERS] RFP: Recursive query in 8.4

2008-03-04 Thread Tatsuo Ishii
> > Tatsuo Ishii <[EMAIL PROTECTED]> wrote: > > > > > 5. Limitation with PostgreSQL > > > > > > 1) we do not implement SEARCH clause and CYCLE clause. This is because > > >we need array of rows to implement them. Note that there's no > > >support for array of rows in PostgreSQL. > > > >

Re: [HACKERS] RFP: Recursive query in 8.4

2008-03-04 Thread Tatsuo Ishii
> Tatsuo Ishii wrote: > >> On Tue, Feb 19, 2008 at 3:36 AM, Tatsuo Ishii <[EMAIL PROTECTED]> wrote: > >> > > I hope so. But the first thing I would like to do is, to implement the > > right thing (i.e. following the standard). > > > > I don't see any reason that the proposal gets less performa

Re: [HACKERS] RFP: Recursive query in 8.4

2008-03-02 Thread Greg Stark
Tatsuo Ishii wrote: On Tue, Feb 19, 2008 at 3:36 AM, Tatsuo Ishii <[EMAIL PROTECTED]> wrote: I hope so. But the first thing I would like to do is, to implement the right thing (i.e. following the standard). I don't see any reason that the proposal gets less performance than existing functi

Re: [HACKERS] RFP: Recursive query in 8.4

2008-02-24 Thread Gregory Stark
[This message is mostly for the benefit of the list -- he and I already talked a bit about this here at FOSDEM. Ishii-san, if you have a chance we should sit down and talk about this in more detail before we leave!] Tatsuo Ishii wrote: >> On Tue, Feb 19, 2008 at 3:36 AM, Tatsuo Ishii <[EMAIL PRO

Re: [HACKERS] RFP: Recursive query in 8.4

2008-02-24 Thread Tatsuo Ishii
> On Tue, Feb 19, 2008 at 3:36 AM, Tatsuo Ishii <[EMAIL PROTECTED]> wrote: > > We propose to implement the recursive query (WITH RECURSIVE clause) > > defined in SQL:1999 and later. With the recursive query, one can > > easily inquire the data expressed as tree and graph structures. The > > ac

Re: [HACKERS] RFP: Recursive query in 8.4

2008-02-22 Thread Merlin Moncure
On Tue, Feb 19, 2008 at 3:36 AM, Tatsuo Ishii <[EMAIL PROTECTED]> wrote: > We propose to implement the recursive query (WITH RECURSIVE clause) > defined in SQL:1999 and later. With the recursive query, one can > easily inquire the data expressed as tree and graph structures. The > actual synta

Re: [HACKERS] RFP: Recursive query in 8.4

2008-02-22 Thread Tatsuo Ishii
> Tatsuo Ishii <[EMAIL PROTECTED]> wrote: > > > 5. Limitation with PostgreSQL > > > > 1) we do not implement SEARCH clause and CYCLE clause. This is because > >we need array of rows to implement them. Note that there's no > >support for array of rows in PostgreSQL. > > What is difference

Re: [HACKERS] RFP: Recursive query in 8.4

2008-02-21 Thread ITAGAKI Takahiro
Tatsuo Ishii <[EMAIL PROTECTED]> wrote: > 5. Limitation with PostgreSQL > > 1) we do not implement SEARCH clause and CYCLE clause. This is because >we need array of rows to implement them. Note that there's no >support for array of rows in PostgreSQL. What is difference between "array o

[HACKERS] RFP: Recursive query in 8.4

2008-02-19 Thread Tatsuo Ishii
Hi, As I promised before we would like to propose implementing the recursive query as defined in the standard for PostgreSQL 8.4. The work is supported by Sumitomo Electric Information Systems Co., Ltd. (http://www.sei-info.co.jp/) and SRA OSS, Inc. Japan (http://www.sraoss.co.jp). 1. Overview