Skip to content
Snippets Groups Projects
Commit 622d7a8b authored by Reynold Xin's avatar Reynold Xin
Browse files

[HOTFIX] Fix compilation.

parent db9517c1
No related branches found
No related tags found
No related merge requests found
......@@ -92,7 +92,8 @@ trait StringRegexExpression extends ImplicitCastInputTypes {
See also:
Use RLIKE to match with standard regular expressions.
""")
case class Like(left: Expression, right: Expression) extends StringRegexExpression {
case class Like(left: Expression, right: Expression)
extends BinaryExpression with StringRegexExpression {
override def escape(v: String): String = StringUtils.escapeLikeRegex(v)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment