Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wangyum committed May 26, 2020
1 parent b127c41 commit 82e97e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3224,7 +3224,7 @@ case class ArrayDistinct(child: Expression)
* Will become common base class for [[ArrayUnion]], [[ArrayIntersect]], and [[ArrayExcept]].
*/
trait ArrayBinaryLike
extends BinaryArrayExpressionWithImplicitCast with ArraySetLike with NullIntolerant{
extends BinaryArrayExpressionWithImplicitCast with ArraySetLike with NullIntolerant {
override protected def dt: DataType = dataType
override protected def et: DataType = elementType

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ case class Upper(child: Expression)
""",
since = "1.0.1")
case class Lower(child: Expression)
extends UnaryExpression with String2StringExpression with NullIntolerant{
extends UnaryExpression with String2StringExpression with NullIntolerant {

// scalastyle:off caselocale
override def convert(v: UTF8String): UTF8String = v.toLowerCase
Expand Down Expand Up @@ -1741,7 +1741,7 @@ case class Left(str: Expression, len: Expression, child: Expression) extends Run
since = "1.5.0")
// scalastyle:on line.size.limit
case class Length(child: Expression)
extends UnaryExpression with ImplicitCastInputTypes with NullIntolerant{
extends UnaryExpression with ImplicitCastInputTypes with NullIntolerant {
override def dataType: DataType = IntegerType
override def inputTypes: Seq[AbstractDataType] = Seq(TypeCollection(StringType, BinaryType))

Expand Down Expand Up @@ -2002,7 +2002,7 @@ case class Base64(child: Expression)
""",
since = "1.5.0")
case class UnBase64(child: Expression)
extends UnaryExpression with ImplicitCastInputTypes with NullIntolerant{
extends UnaryExpression with ImplicitCastInputTypes with NullIntolerant {

override def dataType: DataType = BinaryType
override def inputTypes: Seq[DataType] = Seq(StringType)
Expand Down

0 comments on commit 82e97e3

Please sign in to comment.