aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorYin Huai <yhuai@databricks.com>2015-05-24 09:51:37 -0700
committerYin Huai <yhuai@databricks.com>2015-05-24 09:51:37 -0700
commited21476bc0c760616e7e6bb99f6541745fb09595 (patch)
tree099fa407b4d46a1c71c62231018fd577c33d3895 /project
parentbfbc0df72944fe0a900ab920d8c4329a11fccca6 (diff)
downloadspark-ed21476bc0c760616e7e6bb99f6541745fb09595.tar.gz
spark-ed21476bc0c760616e7e6bb99f6541745fb09595.tar.bz2
spark-ed21476bc0c760616e7e6bb99f6541745fb09595.zip
[SPARK-7805] [SQL] Move SQLTestUtils.scala and ParquetTest.scala to src/test
https://issues.apache.org/jira/browse/SPARK-7805 Because `sql/hive`'s tests depend on the test jar of `sql/core`, we do not need to store `SQLTestUtils` and `ParquetTest` in `src/main`. We should only add stuff that will be needed by `sql/console` or Python tests (for Python, we need it in `src/main`, right? davies). Author: Yin Huai <yhuai@databricks.com> Closes #6334 from yhuai/SPARK-7805 and squashes the following commits: af6d0c9 [Yin Huai] mima b86746a [Yin Huai] Move SQLTestUtils.scala and ParquetTest.scala to src/test.
Diffstat (limited to 'project')
-rw-r--r--project/MimaExcludes.scala5
1 files changed, 4 insertions, 1 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 03e93a2f98..11b439e787 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -133,7 +133,10 @@ object MimaExcludes {
"org.apache.spark.sql.parquet.TestGroupWriteSupport"),
ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.sql.CachedData"),
ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.sql.CachedData$"),
- ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.sql.CacheManager")
+ ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.sql.CacheManager"),
+ // TODO: Remove the following rule once ParquetTest has been moved to src/test.
+ ProblemFilters.exclude[MissingClassProblem](
+ "org.apache.spark.sql.parquet.ParquetTest")
) ++ Seq(
// SPARK-7530 Added StreamingContext.getState()
ProblemFilters.exclude[MissingMethodProblem](