Skip to content

Commit

Permalink
bug fixed for mysql parser keep comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
wenshao committed May 14, 2017
1 parent 2ba4f14 commit e5bb250
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -74,7 +74,7 @@ public MySqlExprParser(String sql){
}

public MySqlExprParser(String sql, boolean keepComments){
this(new MySqlLexer(sql, keepComments, keepComments));
this(new MySqlLexer(sql, true, keepComments));
this.lexer.nextToken();
}

Expand Down

0 comments on commit e5bb250

Please sign in to comment.