When I call a procedure by named parameter notation it gets beautified like this.
But I would prefer it to look like this.
The only way to change this is to change the Item Lists format to be One Item Per Line. But then that also changes the IN clause in your where statements to look like below which I don't like. Is there a way to separate the two distinctions.
Code:
test_proc(p_name => 'FOO', p_name1 => 'BAR', p_value1 => 'Jeff');
But I would prefer it to look like this.
Code:
test_proc(p_name => 'FOO',
p_name1 => 'BAR',
p_value1 => 'Jeff');
The only way to change this is to change the Item Lists format to be One Item Per Line. But then that also changes the IN clause in your where statements to look like below which I don't like. Is there a way to separate the two distinctions.
Code:
SELECT *
FROM emp
WHERE emp_id IN (1,
2,
3);