Skip to content

Commit

Permalink
Optimize code and update TableIdentifierParserSuite.
Browse files Browse the repository at this point in the history
  • Loading branch information
beliefer committed Jul 4, 2019
1 parent caef102 commit a0ceae1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ case class Like(
} else {
val pattern = ctx.freshName("pattern")
val rightStr = ctx.freshName("rightStr")
val escapeChar = escapeCharOpt.getOrElse("\\\\")
val escapeChar = escapeCharOpt.getOrElse("\\\\\\\\")
nullSafeCodeGen(ctx, ev, (eval1, eval2) => {
s"""
String $rightStr = $eval2.toString();
Expand Down

0 comments on commit a0ceae1

Please sign in to comment.