Bo Pedersen
Member²
When the following select is beautified, the comment keeps indenting to the right for each call of the beautifier.
It seems to be connected to the sub-select.
Bo Pedersen
Code:
select *
from emp e
where e.deptno in (select d.deptno
from dept d
/*
This comment keeps crawling to the right when beautified
*/
);
Bo Pedersen