Harvey Kravis
Member
Is there a way to use the Beautifier to align concatenation symbols? If so, how? If not, I'd like to request it as an enhancement. Here's an example where we build dynamic sql (this is just a portion of the select clause):
v_select_clause := v_select_clause
|| c_crlf
|| v_tab
|| i_session_id
|| ','
|| c_crlf;
Note that the ||'s would line up under :=, not left-justified.
v_select_clause := v_select_clause
|| c_crlf
|| v_tab
|| i_session_id
|| ','
|| c_crlf;
Note that the ||'s would line up under :=, not left-justified.