Disappearing space

CTzen

Member³
v 5.1.x - 6.0.1

if I'm typing in command window statement similar to

exec dbms_stats.gather_schema_stats(ownname => user, cascade => true);

and choose procedure parameters from the list, then when I press enter space between comma and named parameter disappears, so I get statement like this

exec dbms_stats.gather_schema_stats(ownname => user,cascade => true);
 
Allegedly ( ;) )this is already on the enhancement list...I complained about the same thing a while back.
 
This bug was in fact fixed, and I cannot reproduce it anymore :confused: . Can you let me know the exact steps to reproduce it in 6.0.4?
 
Marco,

here is another screenshot video .

Basically, I'm just typing command and use auto-complete feature to complete package, function, and parameter names.

As you can see once I select CASCADE parameter and press enter, PL/SQL Developer selects and removes space character that I typed.
 
Hy,

the same happens with an insert-statement

when i type
----------
insert into xy (nr,
----------
there is a blank after the ","
than the auto-complete windows opens, if i choose one of the fields than the field were inserted but the blank disapear.
the auto-complete window opens too if i just type the "," so perhaps this is the problem?
 
Your video allowed me to reproduce this. It turns out that the space is removed if you start to type the name of the parameter and press enter. It is not removed if you explicitly select it from the list.

We'll fix it.
 
Back
Top