aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorShixiong Zhu <shixiong@databricks.com>2017-03-08 23:15:52 -0800
committerShixiong Zhu <shixiong@databricks.com>2017-03-08 23:15:52 -0800
commit029e40b412e332c9f0fff283d604e203066c78c0 (patch)
treed3b8800f2c31fed9e0d6fd3b1ba33e938087d91e /project
parent09829be621f0f9bb5076abb3d832925624699fa9 (diff)
downloadspark-029e40b412e332c9f0fff283d604e203066c78c0.tar.gz
spark-029e40b412e332c9f0fff283d604e203066c78c0.tar.bz2
spark-029e40b412e332c9f0fff283d604e203066c78c0.zip
[SPARK-19874][BUILD] Hide API docs for org.apache.spark.sql.internal
## What changes were proposed in this pull request? The API docs should not include the "org.apache.spark.sql.internal" package because they are internal private APIs. ## How was this patch tested? Jenkins Author: Shixiong Zhu <shixiong@databricks.com> Closes #17217 from zsxwing/SPARK-19874.
Diffstat (limited to 'project')
-rw-r--r--project/SparkBuild.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index 93a31897c9..e52baf51ae 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -655,6 +655,7 @@ object Unidoc {
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/util/collection")))
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/sql/catalyst")))
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/sql/execution")))
+ .map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/sql/internal")))
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/sql/hive/test")))
}