aboutsummaryrefslogtreecommitdiff
path: root/project/MimaExcludes.scala
diff options
context:
space:
mode:
authorWenchen Fan <wenchen@databricks.com>2016-03-28 18:53:47 -0700
committerReynold Xin <rxin@databricks.com>2016-03-28 18:53:47 -0700
commit38326cad873017ca07e90bc4472d01a42589d4cb (patch)
tree0d405c09aae273f25ca651609bde71382daed9be /project/MimaExcludes.scala
parent289257c4c6005779e416b23e593c61e6531b2d9a (diff)
downloadspark-38326cad873017ca07e90bc4472d01a42589d4cb.tar.gz
spark-38326cad873017ca07e90bc4472d01a42589d4cb.tar.bz2
spark-38326cad873017ca07e90bc4472d01a42589d4cb.zip
[SPARK-14205][SQL] remove trait Queryable
## What changes were proposed in this pull request? After DataFrame and Dataset are merged, the trait `Queryable` becomes unnecessary as it has only one implementation. We should remove it. ## How was this patch tested? existing tests. Author: Wenchen Fan <wenchen@databricks.com> Closes #12001 from cloud-fan/df-ds.
Diffstat (limited to 'project/MimaExcludes.scala')
-rw-r--r--project/MimaExcludes.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 208c7a28cf..94621d7fa3 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -589,6 +589,9 @@ object MimaExcludes {
ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.spark.mllib.util.MLUtils.loadLabeledData"),
ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.spark.mllib.optimization.LBFGS.setMaxNumIterations"),
ProblemFilters.exclude[DirectMissingMethodProblem]("org.apache.spark.ml.evaluation.BinaryClassificationEvaluator.setScoreCol")
+ ) ++ Seq(
+ // [SPARK-14205][SQL] remove trait Queryable
+ ProblemFilters.exclude[MissingTypesProblem]("org.apache.spark.sql.Dataset")
)
case v if v.startsWith("1.6") =>
Seq(