Skip to content

Commit

Permalink
[SPARK-7011] Build fails with scala 2.11 option, because a protected[…
Browse files Browse the repository at this point in the history
…sql] type is accessed in ml package.
  • Loading branch information
ScrapCodes committed Apr 20, 2015
1 parent 6fe690d commit e6d57a3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ class NullType private() extends DataType {
case object NullType extends NullType


protected[sql] object NativeType {
protected[spark] object NativeType {
val all = Seq(
IntegerType, BooleanType, LongType, DoubleType, FloatType, ShortType, ByteType, StringType)

Expand Down Expand Up @@ -327,7 +327,7 @@ protected[sql] object PrimitiveType {
}
}

protected[sql] abstract class NativeType extends DataType {
protected[spark] abstract class NativeType extends DataType {
private[sql] type JvmType
@transient private[sql] val tag: TypeTag[JvmType]
private[sql] val ordering: Ordering[JvmType]
Expand Down

0 comments on commit e6d57a3

Please sign in to comment.