On 2/21/06, Tom Lane <[EMAIL PROTECTED]> wrote: > "Marko Kreen" <[EMAIL PROTECTED]> writes: > > On 2/20/06, Tom Lane <[EMAIL PROTECTED]> wrote: > >> This seems like a pretty bad idea: if the SPI_connect fails you lose > >> control without having unwound the subtransaction. That's unlikely, > >> but still wrong. > > > But if I want the error to reach upper transaction? SPI_connect > > failure does not seem a 'expected' situation to me. > > In that case you should put the SPI_connect and later SPI_finish > *outside* the subtransaction and TRY block. And you'll need > SPI_restore_connection I think. This structure would be exactly > parallel to the way pl_exec.c does it.
It does not seem worth the complexity, I rather go with the simple approach and put it inside TRY block then. -- marko ---------------------------(end of broadcast)--------------------------- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match