Beautifier: Cursor Fetch

andyh

Member²
When I beautify:

OPEN cur_prde_site;
FETCH cur_prde_site INTO v_prde_site_number;
CLOSE cur_prde_site;

I get:

OPEN cur_prde_site;
FETCH cur_prde_site
INTO v_prde_site_number;
CLOSE cur_prde_site;

Is there any way to control how the FETCH...INTO appears? I'd like to either be able to choose the alignment of INTO with respsect to FETCH and decided whether the variable should be aligned with the cursor.
 
There is currently no option to control the FETCH layout. I have added this to the list of enhancement requests though.
 
Back
Top