Highlight does not always work for case-statements

In the following situation the hihglight for if,loop and case keywords does not work:

create or replace procedure des_test
is
l_dummy varchar2(1);
begin
l_dummy := case
when 1=1
then 'Y'
else 'N'
end
;
end;
 
Highlighting does indeed not work for such an assignment. We hope to address this limitation in a future release.
 
Back
Top