Re: BUG #13810: cursor_to_xml ignores tableforest parameter - Mailing list pgsql-bugs

From Peter Eisentraut
Subject Re: BUG #13810: cursor_to_xml ignores tableforest parameter
Date
Msg-id fd3cc50b-5f07-c1ad-11df-11f12f43eb6c@2ndquadrant.com
Whole thread Raw
In response to BUG #13810: cursor_to_xml ignores tableforest parameter  (filip@jirsak.org)
Responses Re: BUG #13810: cursor_to_xml ignores tableforest parameter
List pgsql-bugs
On 12/9/15 9:07 AM, filip@jirsak.org wrote:
> CREATE FUNCTION test_cursor_to_xml() RETURNS xml AS $$
> DECLARE
>     curs CURSOR FOR SELECT generate_series(1, 5);
> BEGIN
>   OPEN curs;
>   RETURN cursor_to_xml(curs, 10, TRUE, FALSE, '');
> END;
> $$ LANGUAGE plpgsql;
>
> SELECT test_cursor_to_xml();
>
>
> This returns XML forrest instead of XML document with single root.

You're right, this should have a <table>...</table> around it, like
query_to_xml() does.

--
Peter Eisentraut              http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: BUG #14271: Please fix 13804 bug
Next
From: Alvaro Herrera
Date:
Subject: Re: BUG #14273: Tuple concurently updated error while creating function using async call from node js with postgresq