Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Data Bases > Pgsql Patches > Re: [HACKERS] W...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 1 of 3 Topic 3908 of 4098
Post > Topic >>

Re: [HACKERS] WITH RECUSIVE patches 0717

by er@[EMAIL PROTECTED] ("Erik") Jul 18, 2008 at 07:30 PM

On Fri, July 18, 2008 03:41, Tatsuo I****i wrote:
>> > Here is the lastest WITH RECURSIVE patches against CVS HEAD created
by
>> > Yo****yuki Asaba and minor corrections by Tatsuo I****i.
>>
>> I tried this patch vs. CVS HEAD used my usual configure option with
>> only --with-prefix set, then tried to make, and got:
>>
>> make[3]: *** No rule to make target `parse_cte.o', needed by
`objfiles.txt'.
>>  Stop.
>> make[3]: Leaving directory `/home/shackle/pgsql/src/backend/parser'
>> make[2]: *** [parser-recursive] Error 2
>> make[2]: Leaving directory `/home/shackle/pgsql/src/backend'
>> make[1]: *** [all] Error 2
>> make[1]: Leaving directory `/home/shackle/pgsql/src'
>> make: *** [all] Error 2
>>
>> Is there something missing?
>
> Oops. I forgot to include patches against newly added files. Please
> try included patches.
>


This crashes the backend:

WITH RECURSIVE t(n) AS (
    VALUES (1)
  UNION ALL
    SELECT n+1 FROM t WHERE n < 5 ORDER BY 1
)
SELECT n FROM t;

apparently because of the  ORDER BY 1

( ORDER BY t.n  will just error out )


Compiled with:

	./configure \
	 --prefix=${install_dir} \
	 --with-pg****t=${pg****t} \
	 --quiet          \
	 --enable-depend  \
	 --enable-cassert \
	 --enable-debug   \
	 --with-openssl


hth

Erik Rijkers






-- 
Sent via pgsql-patches mailing list (pgsql-patches@[EMAIL PROTECTED]
)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-patches
 




 3 Posts in Topic:
Re: [HACKERS] WITH RECUSIVE patches 0717
er@[EMAIL PROTECTED] (&q  2008-07-18 19:30:24 
Re: [HACKERS] WITH RECUSIVE patches 0717
tgl@[EMAIL PROTECTED] (T  2008-07-20 12:22:30 
Re: [HACKERS] WITH RECUSIVE patches 0717
ishii@[EMAIL PROTECTED]   2008-07-21 08:19:35 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Wed Oct 15 20:43:20 CDT 2008.