-
Bug
-
Resolution: Done
-
Major
-
7.55.0.Final
-
None
-
2021 Week 25-27 (from Jun 21), 2021 Week 28-30 (from Jul 12)
-
4
-
Undefined
-
NEW
-
NEW
Nested map access in RHS fails in exec-model
package com.example.reproducer
import org.drools.modelcompiler.MvelDialectTest.Bus;
dialect "mvel"
global java.util.List result;
rule "rule_mt_1a"
when
$bus : Bus( $title: "POWER PLANT" )
then
result.add($bus.karaoke.dvd[$title].artist);
end