Re: [HACKERS] WITH RECURSIVE patches 0818

2008-08-23 Thread David Fetter
On Sat, Aug 23, 2008 at 03:35:52PM +0900, Tatsuo Ishii wrote: > > > Here is new patches fixing the bug you pointed out (patches was > > > created by Yoshiyuki). Also I added your SQL to the regression > > > test, and now the patches is against CVS HEAD. For your > > > convenience I also include pat

Re: [HACKERS] WITH RECURSIVE patches 0818

2008-08-22 Thread Tatsuo Ishii
> > Here is new patches fixing the bug you pointed out (patches was > > created by Yoshiyuki). Also I added your SQL to the regression test, > > and now the patches is against CVS HEAD. For your convenience I also > > include patches against the previous version. > > Thanks :) > > Any progress on

Re: [HACKERS] WITH RECURSIVE patches 0818

2008-08-22 Thread David Fetter
On Sat, Aug 23, 2008 at 11:33:13AM +0900, Tatsuo Ishii wrote: > > I think I may have found another bug: > > > > WITH RECURSIVE t(i,j) AS ( > > VALUES (1,2) > > UNION ALL > > SELECT t2.i, t.j > > FROM ( > > SELECT 2 AS i > > UNION ALL /* Wrongly getting detecte

Re: [HACKERS] WITH RECURSIVE patches 0818

2008-08-22 Thread Tatsuo Ishii
> I think I may have found another bug: > > WITH RECURSIVE t(i,j) AS ( > VALUES (1,2) > UNION ALL > SELECT t2.i, t.j > FROM ( > SELECT 2 AS i > UNION ALL /* Wrongly getting detected, I think */ > SELECT 3 AS i > ) AS t2 > JOIN > t >

Re: [HACKERS] WITH RECURSIVE patches 0818

2008-08-19 Thread Tatsuo Ishii
> I think I may have found another bug: > > WITH RECURSIVE t(i,j) AS ( > VALUES (1,2) > UNION ALL > SELECT t2.i, t.j > FROM ( > SELECT 2 AS i > UNION ALL /* Wrongly getting detected, I think */ > SELECT 3 AS i > ) AS t2 > JOIN > t >

Re: [HACKERS] WITH RECURSIVE patches 0818

2008-08-18 Thread David Fetter
On Mon, Aug 18, 2008 at 04:38:52PM +0900, Tatsuo Ishii wrote: > Hi, > > Here is the latest WITH RECURSIVE patches against CVS HEAD. Besides > syncing to CVS HEAD, followings are main differences from previous > one: Thanks for the new patch :) I think I may have found another bug: WITH RECURSIV