Beautifier with statements ver 8.0

dkortekaas

Member
When using the beautifier on a statement with a "with .. as" clause. I get the following result:

SQL:
with ding as
 (select pizza
  from   eten
  where  land = 'Italie')
select pizza
from   ding, eten
where  ding.land = eten.land

But i would expect the following statement:

SQL:
with ding as
 (select pizza
  from   eten
  where  land = 'Italie')
select pizza
from   ding
      ,eten
where  ding.land = eten.land

Is my assumption correct?

I'm using version 8.0.0.1480
 
Back
Top