Another minor beautifier problem

One other small issue :-

This :

Code:
SELECT a
FROM dual
WHERE 123 BETWEEN -1 AND 1000
Becomes :

Code:
SELECT a
FROM   dual
WHERE  123 BETWEEN - 1 AND 1000
Notice the extra space before the 1. Minor issue doesn't look very nice.

Cheers,
D.
 
Back
Top