Re: [HACKERS] bug in integration SQL parser to plpgsq

2010-01-15 Thread Pavel Stehule
2010/1/15 Tom Lane : > Pavel Stehule writes: >> it doesn't support EXPLAIN as possible begin of SQL statement: > > I've applied a fix for that. Thank you Pavel Stehule > >                        regards, tom lane > -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make c

Re: [HACKERS] bug in integration SQL parser to plpgsq

2010-01-15 Thread Tom Lane
Pavel Stehule writes: > it doesn't support EXPLAIN as possible begin of SQL statement: I've applied a fix for that. regards, tom lane -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/ma

Re: [HACKERS] bug in integration SQL parser to plpgsq

2010-01-12 Thread Tom Lane
Pavel Stehule writes: > it doesn't support EXPLAIN as possible begin of SQL statement: > postgres=# create or replace function foo(_a int) returns void as > $$declare s varchar; begin for s in explain select * from omega where > a = _a loop raise notice '%', s; end loop; return; end; $$ language

[HACKERS] bug in integration SQL parser to plpgsq

2010-01-12 Thread Pavel Stehule
Hello it doesn't support EXPLAIN as possible begin of SQL statement: postgres=# create or replace function foo(_a int) returns void as $$declare s varchar; begin for s in explain select * from omega where a = _a loop raise notice '%', s; end loop; return; end; $$ language plpgsql; CREATE FUNCTION