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!

Format update broke statement

Richard WienerSep 10 2020

Use standard format setting.

Before formating - statement is valid:

-- comment
UPDATE --+ any_hint    
policy a
set a.n01 = 1;

After formating - statement is invalid:

-- comment
UPDATE --+ any_hint      policy a
SET
    a.n01 = 1;

Without comment on first line formating work OK.

Comments
Post Details
Added on Sep 10 2020
11 comments
171 views