Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix typo
  • Loading branch information
wangyum committed May 26, 2020
commit 82e97e34f46f0b01c9fc49d25aa7bb1a76e140eb
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