We just upgraded to 7.0.1. Quoted Strings and Compiler directives still not supported by the Beautifier.
In fact, we can't use quoted strings and the beautifier because it changes quoted strings so they won't compile by putting a space between the Q and the quote.
Also, for some reason the...
The beautifier does not know how to deal with quoted strings
Q'(Aren't quoted strings great?)'
or with conditional compilation directives
$IF boolean_static_expression $THEN text
[ $ELSIF boolean_static_expression $THEN text ]
[ $ELSE text ]
$END
Will these be supported soon?
The beautifier will align my column alias fine until I add a DECODE or CASE line to the SQL.
without DECODE
select subscriber_id as sub_id
,first_name as sub_first
,last_name as sub_last
from subscrib
adding a DECODE
select subscriber_id as sub_id
,first_name as...