Skip to content

Commit

Permalink
QPID-8656: [Broker-J] Selector parsing logic error when combining NOT…
Browse files Browse the repository at this point in the history
… and LIKE (#230)
  • Loading branch information
dakirily authored Dec 13, 2023
1 parent 77a06a8 commit 8f7909f
Show file tree
Hide file tree
Showing 8 changed files with 416 additions and 88 deletions.
2 changes: 1 addition & 1 deletion broker-core/src/main/grammar/SelectorParser.jj
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ Expression unaryExpr() :
left = UnaryExpression.createNegate(left);
}
|
<NOT> left=unaryExpr()
<NOT> left=orExpression()
{
left = UnaryExpression.createNOT( asBooleanExpression(left) );
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,4 +205,4 @@ static String add_escapes(String str) {
}

}
/* JavaCC - OriginalChecksum=d315306e736475f86f69c53861799960 (do not edit this line) */
/* JavaCC - OriginalChecksum=f191e3976fe6d5a6a93a2d6f845dcf9d (do not edit this line) */
Loading

0 comments on commit 8f7909f

Please sign in to comment.