Re: [PATCHES] plperl spi_exec_query patch

2004-07-11 Thread Bruce Momjian
Patch withdrawn by author. --- Andrew Dunstan wrote: The following patch applies a change I inadvertantly left out of the previous patch, and makes spi_exec_query work correctly in the case of a select query. Test

[PATCHES] plperl spi_exec_query patch

2004-07-04 Thread Andrew Dunstan
The following patch applies a change I inadvertantly left out of the previous patch, and makes spi_exec_query work correctly in the case of a select query. Test shows: CREATE TABLE test ( i int, v varchar ); CREATE TABLE INSERT INTO test (i, v) VALUES (1,'first line'); INSERT