Skip to Main Content

SQL Developer

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Bugs from 18.1 still persist in 18.2

Pavel_pJul 10 2018 — edited Jul 11 2018

Hello,

both bugs marked here as fixed unfortunately still persist in 18.2.

The first one (duplicating package name) is fixed only partially - if the package name is aliased, it still produces duplicated package name.

Steps to reproduce:

create or replace package completion_test as

  procedure test;

end;

create or replace package body completion_test as

  procedure test

    as

  begin

    null;

  end test;

end completion_test;

create or replace synonym comptest for completion_test;

/

and then

begin

comptest.  --hit code suggestions here

end;

results in

begin

comptest.completion_test.test

end;

The second one - code formatting for if-then-else conditions is inverted, e.g. Formatting => Line Breaks => IF => After IF and After ELSIF produces the new line while when unchecked not.

Please @"Vadim Tropashko-Oracle", could you take a look at it?

Regards,

Pavel

This post has been answered by Vadim Tropashko-Oracle on Jul 10 2018
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 8 2018
Added on Jul 10 2018
2 comments
355 views