Hi,
If I add a hint the Beautifier can not align the columns in the selection criteria:
SELECT /*+ ORDERED */
COLUMN1,
COLUMN2
FROM TEST_TAB
It only works this SQL if I remove the hint:
SELECT COLUMN1,
COLUMN2
FROM TEST_TAB
This is on Version 7.0.1.1066 (MBCS).
Please comment...