Skip to content

Commit

Permalink
fix mod operator
Browse files Browse the repository at this point in the history
  • Loading branch information
junwen12221 committed Apr 1, 2022
1 parent 594a8aa commit fbc391c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1266,12 +1266,11 @@ public boolean visit(SQLBinaryOpExpr x) {
new SQLMethodInvokeExpr("SOUNDEX", null, x.getRight()));
eq.accept(this);
return false;
case Mod:

case SubGt:
case SubGtGt:
sqlNode = SubGtFunction.INSTANCE.createCall(SqlParserPos.ZERO, new SqlNode[]{left, right});
return false;
case Mod:
case PoundGt:

case PoundGtGt:
Expand Down

0 comments on commit fbc391c

Please sign in to comment.