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 build error
  • Loading branch information
wangyum committed May 24, 2020
commit c3625ca3aba36466fae5386644ace2ff8db2334a
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