-
Bug
-
Resolution: Done
-
Minor
-
5.6.0.Final
-
None
-
-
Workaround Exists
-
-
NEW
-
NEW
In the compiled drl file we were using (Sets.newHashSet(e1,e2,..)).contains(input) then we get an exception java.lang.IncompatibleClassChangeError: Class XYZ does not implement the requested interface java.util.Collection on large input sets.Here XYZ is our input ruleRequest to be evaluated. If I change it to Sets.newHashSet(e1,e2,..).contains(input) it fixes everything.