Re: [PATCHES] Continue stmt for plpgsql

2005-06-21 Thread Neil Conway
Neil Conway wrote: Attached is a revised patch. Patch applied -- thanks, Pavel. I ended up using ERRCODE_SYNTAX_ERROR when a CONTINUE is specified outside a loop. BTW, one minor annoyance is: <> BEGIN LOOP CONTINUE lbl; END LOOP; END; The current implementation will raise an

Re: [PATCHES] Continue stmt for plpgsql

2005-06-21 Thread Neil Conway
Pavel Stehule wrote: Attached patch provide continue stmt in plpgsql language. Continue stmt start new step in any loop stmt. If stmt continue is in begin end block, then find first outer loop (per recent discussion). Attached is a revised patch. I didn't see anything major that needed to b