You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by zs...@apache.org on 2017/03/09 07:15:55 UTC

spark git commit: [SPARK-19874][BUILD] Hide API docs for org.apache.spark.sql.internal

Repository: spark
Updated Branches:
  refs/heads/master 09829be62 -> 029e40b41


[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 <sh...@databricks.com>

Closes #17217 from zsxwing/SPARK-19874.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/029e40b4
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/029e40b4
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/029e40b4

Branch: refs/heads/master
Commit: 029e40b412e332c9f0fff283d604e203066c78c0
Parents: 09829be
Author: Shixiong Zhu <sh...@databricks.com>
Authored: Wed Mar 8 23:15:52 2017 -0800
Committer: Shixiong Zhu <sh...@databricks.com>
Committed: Wed Mar 8 23:15:52 2017 -0800

----------------------------------------------------------------------
 project/SparkBuild.scala | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/029e40b4/project/SparkBuild.scala
----------------------------------------------------------------------
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index 93a3189..e52baf5 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")))
   }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org