Beautifier dose't work on some system func

Qiang

Member
hi:
first i'm sorry about my english. :(

In Program Window
My Code:
SELECT round(VARIANCE(t1.a), 2)...... FROM table t1

the "round" is lowercase and "VARIANCE" is uppercase.
i hope there will all become uppercase.
but it workes fine in SQL Window.

Bug or i was missed some options?

thanks!

 
If you prefer standard SQL functions like round to be treated as keywords, then you can move them to the corresponding section in the default.kwf file in the PL/SQL Developer. Just move it from the
SQL:
 section to the [PLSQL] section.
 
Back
Top