Patrick Wolf
Member²
Hi,
when I refactor the name of a parameter of a function/procedure, the name is not changed for calls of this function/procedure if I use the non-positional syntax.
eg:
Refactor pParameter1 to eg. pAbc
Regards
Patrick
when I refactor the name of a parameter of a function/procedure, the name is not changed for calls of this function/procedure if I use the non-positional syntax.
eg:
Code:
PROCEDURE createTest
( pParameter1 IN NUMBER
, pParameter2 IN NUMBER
)
IS
BEGIN
NULL;
END createTest;
--
PROCEDURE anotherTest
IS
BEGIN
createTest(pParameter1 => 1, pParameter2 => 2);
END anotherTest;
Regards
Patrick