Can not hyper-link to package/method in cursor

Claus Pedersen

Member³
I have the following code:
Code:
CREATE PROCEDURE tester AS
  CURSOR my_cursor IS
    SELECT *
    FROM   dual
    WHERE  sys.standard.nvl (1,2) = 1; -- hyperlink does not work here
BEGIN
  IF sys.standard.nvl (1,2) = 1 THEN -- hyperlink works here
    NULL;
  END IF;
END;

If I try to hyper-link to the 'standard' package (Ctrl+left mouse button) inside the cursor (line 5), it does not work.

If I remove the space before the parenthesis in line 5, then hyperlinking works.

If I do the same in line 7, hyperlinking always works (with or without space)

I am not sure, but I am quite certain that this used to work in version 15

I am using version 16.0.0.2142
 
Back
Top