aboutsummaryrefslogtreecommitdiff
path: root/dev/run-tests.py
diff options
context:
space:
mode:
authorCheng Lian <lian@databricks.com>2016-03-11 22:17:50 +0800
committerCheng Lian <lian@databricks.com>2016-03-11 22:17:50 +0800
commit6d37e1eb90054cdb6323b75fb202f78ece604b15 (patch)
tree1a93192d453c0ad68929b38fd1346af82314131b /dev/run-tests.py
parent07f1c5447753a3d593cd6ececfcb03c11b1cf8ff (diff)
downloadspark-6d37e1eb90054cdb6323b75fb202f78ece604b15.tar.gz
spark-6d37e1eb90054cdb6323b75fb202f78ece604b15.tar.bz2
spark-6d37e1eb90054cdb6323b75fb202f78ece604b15.zip
[SPARK-13817][BUILD][SQL] Re-enable MiMA and removes object DataFrame
## What changes were proposed in this pull request? PR #11443 temporarily disabled MiMA check, this PR re-enables it. One extra change is that `object DataFrame` is also removed. The only purpose of introducing `object DataFrame` was to use it as an internal factory for creating `Dataset[Row]`. By replacing this internal factory with `Dataset.newDataFrame`, both `DataFrame` and `DataFrame$` are entirely removed from the API, so that we can simply put a `MissingClassProblem` filter in `MimaExcludes.scala` for most DataFrame API changes. ## How was this patch tested? Tested by MiMA check triggered by Jenkins. Author: Cheng Lian <lian@databricks.com> Closes #11656 from liancheng/re-enable-mima.
Diffstat (limited to 'dev/run-tests.py')
-rwxr-xr-xdev/run-tests.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/dev/run-tests.py b/dev/run-tests.py
index ebeede52c9..a1e6f1bdb5 100755
--- a/dev/run-tests.py
+++ b/dev/run-tests.py
@@ -573,8 +573,7 @@ def main():
# backwards compatibility checks
if build_tool == "sbt":
# Note: compatibility tests only supported in sbt for now
- # TODO Temporarily disable MiMA check for DF-to-DS migration prototyping
- # detect_binary_inop_with_mima()
+ detect_binary_inop_with_mima()
# Since we did not build assembly/assembly before running dev/mima, we need to
# do it here because the tests still rely on it; see SPARK-13294 for details.
build_spark_assembly_sbt(hadoop_version)