Code Assistant cease to work with a "With" Statement

Roeland

Member³
I use the "with" construct a lot in my code because it enhances readability. Problem is that the Code Assistant seems to not like it.
Within a "With" statement it won't popup.

For example: ('#' is the cursor position)

Code:
with X as
 (select *
  from Dual d
  where d.# )

select *
from Dual t, X
where x.Dummy = t.dummy

Could this be enhanced please?

Roeland

PL/SQL Developer 8.0.4.1514
 
Back
Top