Skip to content

Commit

Permalink
ut 17
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Oct 14, 2024
1 parent dae1384 commit ef3e398
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ void test16() {

@Test
void test17() {
String expr = "(a=1 and b=2) or (a in (2, 3) and ((a=2 and c=3) or (a=3 or d=4)))";
String expr = "(a=1 and b=2) or (a in (2, 3) and ((a=2 and c=3) or (a=3 and d=4)))";
Expression expression = PARSER.parseExpression(expr);
Expression rewritten = OrToIn.INSTANCE.rewriteTree(expression, context);
System.out.println(rewritten);
Expand Down

0 comments on commit ef3e398

Please sign in to comment.