With the code below, triggering completion almost anywhere causes this exception:
[1/23/2024, 9:32:50 AM] [./dbtools(22709)] [WARN ] #stderr
java.lang.AssertionError: Cartesian product evaluation: failed to find attribute joined to [entry].
Independent Attributes: [entry, scope]
Can you reproduce this? Thanks!
CREATE OR REPLACE PACKAGE BODY test_package
AS
PROCEDURE test_1( in_1 IN BOOLEAN, in_2 IN BOOLEAN DEFAULT FALSE )
AS
BEGIN
FOR cur IN ( SELECT 1 FROM dual ) LOOP
NULL;
END LOOP;
END test_1;
PROCEDURE test_2( in_1 IN BOOLEAN, in_2 IN BOOLEAN DEFAULT FALSE )
AS
BEGIN
NULL;
END test_2;
END test_package;
/