Bugfix - Beautyfier does not break after END CASE

The code as I would like it (indentation does not seeems to work in the forum...):

IF v_value = 1
THEN
CASE
WHEN v_value2.......;
WHEN v_value2.......;
END CASE;
ELSE
v_value2.......;
END IF;

and how PLS beautyfier format the text,
IF v_value = 1
THEN
CASE
WHEN v_value2.......;
WHEN v_value2.......;
END CASE;ELSE
v_value2.......;
END IF;

I would like to have a CR after END CASE;
 
This has been enhanced in the upcoming 8.0 release.

Note: indentation works if you use a code block (without the spaces):

[ code ]
...
[ /code ]
 
Back
Top