Skip to content

Commit 82e97e3

Browse files
committed
fix typo
1 parent b127c41 commit 82e97e3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/collectionOperations.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3224,7 +3224,7 @@ case class ArrayDistinct(child: Expression)
32243224
* Will become common base class for [[ArrayUnion]], [[ArrayIntersect]], and [[ArrayExcept]].
32253225
*/
32263226
trait ArrayBinaryLike
3227-
extends BinaryArrayExpressionWithImplicitCast with ArraySetLike with NullIntolerant{
3227+
extends BinaryArrayExpressionWithImplicitCast with ArraySetLike with NullIntolerant {
32283228
override protected def dt: DataType = dataType
32293229
override protected def et: DataType = elementType
32303230

sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/stringExpressions.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ case class Upper(child: Expression)
357357
""",
358358
since = "1.0.1")
359359
case class Lower(child: Expression)
360-
extends UnaryExpression with String2StringExpression with NullIntolerant{
360+
extends UnaryExpression with String2StringExpression with NullIntolerant {
361361

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

@@ -2002,7 +2002,7 @@ case class Base64(child: Expression)
20022002
""",
20032003
since = "1.5.0")
20042004
case class UnBase64(child: Expression)
2005-
extends UnaryExpression with ImplicitCastInputTypes with NullIntolerant{
2005+
extends UnaryExpression with ImplicitCastInputTypes with NullIntolerant {
20062006

20072007
override def dataType: DataType = BinaryType
20082008
override def inputTypes: Seq[DataType] = Seq(StringType)

0 commit comments

Comments
 (0)