[
https://issues.jboss.org/browse/DROOLS-4788?page=com.atlassian.jira.plugi...
]
Mario Fusco resolved DROOLS-4788.
---------------------------------
Resolution: Done
Fixed by
https://github.com/kiegroup/drools/commit/1796447836998a2d4f10f57e57dc312...
[~hiroko] The problem was caused by the fact that the no-args constructor of
SpreadsheetCompiler was defaulted to not trimming the values, while the default should be
set to true. Note however that there shouldn't be any good reason for end-user to
create and invoke that class directly instead of going through the dtable compiler. In
essence the no-args constructor of SpreadsheetCompiler should be intended only for test
purposes and not to be used directly.
newline within the rule cell of spreadsheet is included as a value
incorrectly
------------------------------------------------------------------------------
Key: DROOLS-4788
URL:
https://issues.jboss.org/browse/DROOLS-4788
Project: Drools
Issue Type: Bug
Components: decision tables
Affects Versions: 7.26.0.Final
Environment: - spreadsheet
- 7.26.0.Final and later
Reporter: Hiroko Miura
Assignee: Mario Fusco
Priority: Major
Labels: support
Attachments: newlineInConditionCellTest.zip
When there is new line in rule cell with specific condition, new line('\n') is
included as a value.
Here is generated problematic DRL.
{noformat}
rule "newlineInCell_11"
when
m:Message(map["Key1"] == var1,
map["\nKey2"] == var2) <== HERE
then
System.out.println(m.getMessage());
m.setMessage("Goodbye cruel world");
m.setStatus(Message.GOODBYE);
end
{noformat}
This does happen with 7.26.0.Final(RHDM7.5.0), but not with 7.23.0.Final(7.4.x).
--
This message was sent by Atlassian Jira
(v7.13.8#713008)