From e76679a814f5a0903c5f93d9a482f5ddc56fe0d2 Mon Sep 17 00:00:00 2001 From: Reynold Xin Date: Tue, 15 Mar 2016 10:39:07 +0800 Subject: [SPARK-13880][SPARK-13881][SQL] Rename DataFrame.scala Dataset.scala, and remove LegacyFunctions ## What changes were proposed in this pull request? 1. Rename DataFrame.scala Dataset.scala, since the class is now named Dataset. 2. Remove LegacyFunctions. It was introduced in Spark 1.6 for backward compatibility, and can be removed in Spark 2.0. ## How was this patch tested? Should be covered by existing unit/integration tests. Author: Reynold Xin Closes #11704 from rxin/SPARK-13880. --- project/MimaExcludes.scala | 1 + 1 file changed, 1 insertion(+) (limited to 'project') diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala index a9973bc24c..2a4a874fef 100644 --- a/project/MimaExcludes.scala +++ b/project/MimaExcludes.scala @@ -314,6 +314,7 @@ object MimaExcludes { ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.sql.DataFrame"), ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.sql.DataFrame$"), + ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.sql.LegacyFunctions"), ProblemFilters.exclude[IncompatibleMethTypeProblem]("org.apache.spark.mllib.evaluation.MultilabelMetrics.this"), ProblemFilters.exclude[IncompatibleResultTypeProblem]("org.apache.spark.ml.classification.LogisticRegressionSummary.predictions"), -- cgit v1.2.3