Skip to Main Content

SQL Developer for VS Code

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

IntelliSense: java.lang.AssertionError: Cartesian product evaluation

Peter L.Jan 23 2024

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;
/
This post has been answered by Vadim Tropashko-Oracle on Jan 23 2024
Jump to Answer
Comments
Post Details
Added on Jan 23 2024
6 comments
175 views