hvanhovell commented on code in PR #49800:
URL: https://github.com/apache/spark/pull/49800#discussion_r1942181077
##########
project/SparkBuild.scala:
##########
@@ -1366,14 +1363,18 @@ trait SharedUnidocSettings {
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/util/collection")))
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/util/io")))
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/util/kvstore")))
+
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/sql/artifact")))
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/sql/catalyst")))
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/sql/connect/")))
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/sql/classic/")))
.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/scripting")))
+ .map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/sql/ml")))
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/sql/hive")))
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/sql/catalog/v2/utils")))
- .map(_.filterNot(_.getCanonicalPath.contains("org.apache.spark.errors")))
-
.map(_.filterNot(_.getCanonicalPath.contains("org.apache.spark.sql.errors")))
+ .map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/errors")))
+
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/sql/errors")))
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/hive")))
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/sql/v2/avro")))
Review Comment:
Well the problem is that `org.apache.spark.sql.avro.functions` is user
facing API. I can mark the entire datasource implementation as `private[sql]`,
but I'd prefer to move it elsewhere.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]