Beautifier and plsql table elements

Greg Pigate

Member²
In our code we often have this

WHERE table_column= plsql_table(i)
.column AND
table_column = plsql_table(i)
.column and
table_column >= plsql_table(i)
.column;

We would like to see this

WHERE table_column= plsql_table(i) .column AND
table_column = plsql_table(i) .column and
table_column = plsql_table(i) .column;

SO that the plsql table and its element remain on one line. Is this currently possible?
 
Back
Top