Stew Stryker
Member³
I have a stored procedure with a CURSOR and I commented out some of the returned columns. I discovered that Beautifying indents the commented text right.
It doesn't happen if you just have a SELECT by itself, only w/in a procedure or function. My original example showed up in a package and the SELECT statement was part of a cursor, but the problem occurs in much simpler examples, even ones that won't compile, like this one:
I first noticed it when it looked like my commented lines had VANISH or the font color was white! That's because it'd shifted the text off the side of my screen and I couldn't see it.
Good luck!
It doesn't happen if you just have a SELECT by itself, only w/in a procedure or function. My original example showed up in a package and the SELECT statement was part of a cursor, but the problem occurs in much simpler examples, even ones that won't compile, like this one:
Code:
CREATE OR REPLACE PROCEDURE lookup_via_advance(search_values_in IN VARCHAR2) RETURN VARCHAR2 IS
BEGIN
SELECT e.id_number
/*,
jaro_score
*/
FROM entity e;
END;
Good luck!