Highlighting bug caused by q'[]' literals

I agree (and this has been reported a few times).

Code:
changing : SELECT q'[package.Procedure('val(x)');]'  FROM dual
      to : SELECT q'[package.Procedure('val(x) ');]' FROM dual

fixes it. note: the space after (x). also an issue with >.
 
Back
Top