Refactor parameter name

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:

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;
Refactor pParameter1 to eg. pAbc

Regards
Patrick
 
The scope is indeed limited to the procedure itself. I have added this to the list of enhancement requests.
 
Back
Top