When name of variable is the same as the name of table column in a select statement, refactoring->rename item (in program window) changes variable name and also name of the column. It should change only name of variable.
Example:
before refactoring:
procedure example is
abc integer
begin
select abc into abc
from my_table;
end;
after refactoring->rename item on abc variable:
procedure example is
xyz integer
begin
select xyz into xyz
from my_table;
end;
and should be (if abc is a column of my_table):
procedure example is
xyz integer
begin
select abc into xyz
from my_table;
end;
Example:
before refactoring:
procedure example is
abc integer
begin
select abc into abc
from my_table;
end;
after refactoring->rename item on abc variable:
procedure example is
xyz integer
begin
select xyz into xyz
from my_table;
end;
and should be (if abc is a column of my_table):
procedure example is
xyz integer
begin
select abc into xyz
from my_table;
end;