Skip to content

Commit c3625ca

Browse files
committed
Fix build error
1 parent fb68d60 commit c3625ca

5 files changed

Lines changed: 3 additions & 5 deletions

File tree

pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -885,8 +885,7 @@
885885
<dependency>
886886
<groupId>org.clapper</groupId>
887887
<artifactId>classutil_${scala.binary.version}</artifactId>
888-
<version>1.5.0</version>
889-
<scope>test</scope>
888+
<version>1.5.1</version>
890889
</dependency>
891890
<dependency>
892891
<groupId>org.scalatest</groupId>

sql/catalyst/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@
120120
<dependency>
121121
<groupId>org.clapper</groupId>
122122
<artifactId>classutil_${scala.binary.version}</artifactId>
123+
<scope>test</scope>
123124
</dependency>
124125
</dependencies>
125126
<build>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -871,7 +871,7 @@ case class UnixTimestamp(timeExp: Expression, format: Expression, timeZoneId: Op
871871
}
872872

873873
abstract class ToTimestamp
874-
extends BinaryExpression with TimeZoneAwareExpression with ExpectsInputTypes with NullIntolerant {
874+
extends BinaryExpression with TimeZoneAwareExpression with ExpectsInputTypes {
875875

876876
// The result of the conversion to timestamp is microseconds divided by this factor.
877877
// For example if the factor is 1000000, the result of the expression is in seconds.

sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/expressions/NullIntolerantCheckerSuite.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ class NullIntolerantCheckerSuite extends SparkFunSuite {
3131
// Do not check these Expressions
3232
private val whiteList = List(
3333
classOf[IntegralDivide], classOf[Divide], classOf[Remainder], classOf[Pmod],
34-
classOf[ToUnixTimestamp], classOf[GetTimestamp], classOf[UnixTimestamp],
3534
classOf[CheckOverflow], classOf[NormalizeNaNAndZero],
3635
classOf[InSet],
3736
classOf[PrintToStderr], classOf[CodegenFallbackExpression]).map(_.getName)

tools/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
<dependency>
4545
<groupId>org.clapper</groupId>
4646
<artifactId>classutil_${scala.binary.version}</artifactId>
47-
<version>1.5.1</version>
4847
</dependency>
4948
</dependencies>
5049

0 commit comments

Comments
 (0)