issue DDL
You mean something like: EXEC plperl(print $foo)?
Something like this:
SELECT a, b, c
FROM (
EXECUTE IMMEDIATE
LANGUAGE plperl
$$...$$
) AS (a int, b point, c text)
JOIN ...
Anyhow, the idea is to be able to call PL functionality in-line
without having to create a function in advance.
Well that is certainly interesting. Opens up a whole lot of flexibility,
especially to views and such.
Seems a little unnatural though ;)
Joshua D. Drake
Cheers,
D
--
=== The PostgreSQL Company: Command Prompt, Inc. ===
Sales/Support: +1.503.667.4564 || 24x7/Emergency: +1.800.492.2240
Providing the most comprehensive PostgreSQL solutions since 1997
http://www.commandprompt.com/
---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend