Bug: Refactoring - Rename item does not work when prefixed with a minus

Claus Pedersen

Member³

Code:
DECLARE
  y INT;
BEGIN
  x := - y;
END;

When I right-click y and select "Refactoring" and "Rename item" and rename to e.g. z, the use of y is not changed to z. If the minus sign is removed or I write 1 - y, it works OK.

I am using version 8.0.4.1514
 
Back
Top