Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
qpid-java-broker-9.0.0
-
None
Description
The JMSSelectorFilter.match() gives unexpected results when combining the LIKE and NOT operators.
The selector "NOT (entry LIKE '%aaa%')" and value "bbbb" returns true, as expected,
The selector "NOT entry LIKE '%aaa%'" and value "bbbb" returns false, whcih is a bug.
In both cases the method retuns true when the value is "aaaa"