]
Jozef Marko closed DROOLS-1874.
-------------------------------
Resolution: Won't Fix
Closing this issue as was not reported by customer and no one had a look over two years.
Verification reporting: Impossible match is detected just for
equality operator
-------------------------------------------------------------------------------
Key: DROOLS-1874
URL:
https://issues.redhat.com/browse/DROOLS-1874
Project: Drools
Issue Type: Sub-task
Components: Guided Decision Table Editor
Affects Versions: 7.0.0.CR2
Reporter: Jozef Marko
Assignee: Toni Rikkola
Priority: Minor
Labels: reported-by-qe, verifier
The feature of detecting impossible match stopped to work for condition columns that uses
operators less than and greater than. If the condition columns uses equality operator,
then the impossible match is detected.
Steps to reproduce:
# Create Guided Decision Table
# Create two columns that do check like: *p : Person(name == [value])*
# Append row into table
# In first column check that name equals to "John"
# In second column check that name equals to "john"
# Impossible match is detected in this case
# Create another Guided Decision table
# Create one column that do check like: *p : Person(age < [value])*
# Create other column that do check like: *p : Person(age > [value])*
# Append row into the table
# Check that age is less than 10 in first column
# Check that age is greater than 20 in second column
# Impossible match *is not* thrown, but it is expected