Minor bug: hyperlinking on a package sometimes goes to table definition instead

Claus Pedersen

Member³
I have a package body with a piece of code like the following:

Code:
SELECT emp.empno
  INTO   myVariable
  FROM   emp
  WHERE  emp.hiredate > myPackage.calculate_hiredate;
When I press Ctrl and left-click on "myPackage.calculate_hiredate" the package name is highlighted but it is the table EMP that is opened as hyperlink.

Why?
 
Back
Top