P
Peter Judge
Guest
The RETURN c line does not execute. The error raised by the preceding line “jumps” to the CATCH block. You can verify this by using the debugger and stepping through the lines as they execute. You could add a RETURN c in the catch or even a finally block but you should be careful of doing that (there are certain flow-of-control statements that don’t do what you’d think in CATCH/FINALLY blocks. There were changes in 11.4 (? I think; someone will correct me) to how such things work.
Continue reading...
Continue reading...