"Gerd Grossmann" <gerdgrossmann(at)njini(dot)com> writes:
> Executing the following
> createStmnt:='CREATE TABLE test (val integer);INSERT INTO test (val)
> VALUES (1);';
> EXECUTE createStmnt;
> would just work fine under postgresql 8.3 but does not work with postgresql
> 8.0. It complains that the table test does not exist!
I get the same complaint in both versions; which I find unsurprising
because the whole querystring is parsed and planned before execution
begins.
regards, tom lane