Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
wangyum committed May 24, 2020
1 parent fb68d60 commit c3625ca
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -885,8 +885,7 @@
<dependency>
<groupId>org.clapper</groupId>
<artifactId>classutil_${scala.binary.version}</artifactId>
<version>1.5.0</version>
<scope>test</scope>
<version>1.5.1</version>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
Expand Down
1 change: 1 addition & 0 deletions sql/catalyst/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@
<dependency>
<groupId>org.clapper</groupId>
<artifactId>classutil_${scala.binary.version}</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -871,7 +871,7 @@ case class UnixTimestamp(timeExp: Expression, format: Expression, timeZoneId: Op
}

abstract class ToTimestamp
extends BinaryExpression with TimeZoneAwareExpression with ExpectsInputTypes with NullIntolerant {
extends BinaryExpression with TimeZoneAwareExpression with ExpectsInputTypes {

// The result of the conversion to timestamp is microseconds divided by this factor.
// For example if the factor is 1000000, the result of the expression is in seconds.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ class NullIntolerantCheckerSuite extends SparkFunSuite {
// Do not check these Expressions
private val whiteList = List(
classOf[IntegralDivide], classOf[Divide], classOf[Remainder], classOf[Pmod],
classOf[ToUnixTimestamp], classOf[GetTimestamp], classOf[UnixTimestamp],
classOf[CheckOverflow], classOf[NormalizeNaNAndZero],
classOf[InSet],
classOf[PrintToStderr], classOf[CodegenFallbackExpression]).map(_.getName)
Expand Down
1 change: 0 additions & 1 deletion tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
<dependency>
<groupId>org.clapper</groupId>
<artifactId>classutil_${scala.binary.version}</artifactId>
<version>1.5.1</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit c3625ca

Please sign in to comment.