-
Bug
-
Resolution: Done
-
Major
-
7.73.0.Final
-
2022 Week 29-31 (from Jul 18), 2022 Week 32-34 (from Aug 8)
-
3
-
NEW
-
NEW
-
---
-
---
When you have more than 3 rules of BigDecimal coercion, the rule doesn't match with non-exec-model.
rule "R1"
when
Person( salary == 10 )
then
end
rule "R2"
when
Person( salary == 20 )
then
end
rule "R3"
when
Person( salary == 30 )
then
end
Person john = new Person("John");
john.setSalary(new BigDecimal("10"));
ksession.insert(john);
ksession.fireAllRules();
- is incorporated by
-
RHDM-1944 Equality condition between BigDecimal property and numeric value does not work correctly in non executable model.
-
- Closed
-
- is related to
-
DROOLS-7444 join constraints are ignored when BigDecimal equality is involved in a Pattern
-
- Resolved
-
- relates to
-
DROOLS-6260 BigDecimal different compare behavior depending on the amount of conditions
-
- Resolved
-