Beautifier not handling "using" parameters correctly

OliStef

Member
In my code there is an "execute immediate" statement along with a "using" clause. The parameters list for the using clause is quite long and the beautifier does not break the line in correct length according to "Right margin" definition.
In my case the "Right margin" is 150, but the "using" parameters line is 257 characters long.

Is there a way to correct this in the beautifier settings?
I'm using version 9.0.1.1613
 
Here is an example
Code:
begin
  execute immediate l_sqlstr
    using l_sdlfksdjl, l_asdoidn11, l_asdfasdffff, l_sdflskdf, l_sdlisdndsdsspp_dsldin_sdd, l_asdlsindslunsy_dsdns_sdd, l_asdlsinsnn, l_ewoinwenwn, l_sd
 
The code example above was cut short so I resend it without the ubb:

begin
execute immediate l_sqlstr
using l_sdlfksdjl, l_asdoidn11, l_asdfasdffff, l_sdflskdf, l_sdlisdndsdsspp_dsldin_sdd, l_asdlsindslunsy_dsdns_sdd, l_asdlsinsnn, l_ewoinwenwn, l_sd
 
Back
Top