Marco van der Linden
Member³
I've got the Beautifier preferences set to 'Split at zero-level AND/OR'. However, when in a Where clause I have
It beautifies as
whereas I would like it to be
So basically this comes down to two Enhancement request.
a. Option to align matching brackets
b. Split-at 'indentation' level AND/OR possibility
Oh, and maybe a third, for 'align matching brackets' is not wanted for data type conversion functions and simple SQL function such as NVL, GREATEST etc. and not to forget datatype declarations such as VARCHAR2().
I know there have been a lot of enhancement requests regarding the Beautifier during the beta testing for 7.0, but these have apparantely not made it into 7.1. Is there any timetable for enhancements to the beautifier options?
Code:
AND ...
AND ( y = x OR z = i)
AND ...
Code:
AND ...
AND (y = x OR
z = i)
AND ...
Code:
AND ...
AND (y = x
OR
z = i
)
AND ...
a. Option to align matching brackets
b. Split-at 'indentation' level AND/OR possibility
Oh, and maybe a third, for 'align matching brackets' is not wanted for data type conversion functions and simple SQL function such as NVL, GREATEST etc. and not to forget datatype declarations such as VARCHAR2().
I know there have been a lot of enhancement requests regarding the Beautifier during the beta testing for 7.0, but these have apparantely not made it into 7.1. Is there any timetable for enhancements to the beautifier options?