Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project/SparkBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1401,7 +1401,7 @@ object Unidoc {
.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/catalyst")))
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/sql/connect")))
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/sql/connect/")))
.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")))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ public interface SupportsMetadataColumns extends Table {
* Determines how this data source handles name conflicts between metadata and data columns.
* <p>
* If true, spark will automatically rename the metadata column to resolve the conflict. End users
* can reliably select metadata columns (renamed or not) with {@link Dataset.metadataColumn}, and
* internal code can use {@link MetadataAttributeWithLogicalName} to extract the logical name from
* can reliably select metadata columns (renamed or not) with {@code Dataset.metadataColumn}, and
* internal code can use {@code MetadataAttributeWithLogicalName} to extract the logical name from
* a metadata attribute.
* <p>
* If false, the data column will hide the metadata column. It is recommended that Table
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -619,9 +619,9 @@ class BufferedRows(val key: Seq[Any] = Seq.empty) extends WriterCommitMessage
}

/**
* Theoretically, [[InternalRow]] returned by [[HasPartitionKey#partitionKey()]]
* Theoretically, `InternalRow` returned by `HasPartitionKey#partitionKey()`
* does not need to implement equal and hashcode methods.
* But [[GenericInternalRow]] implements equals and hashcode methods already. Here we override it
* But `GenericInternalRow` implements equals and hashcode methods already. Here we override it
* to simulate that it has not been implemented to verify codes correctness.
*/
case class PartitionInternalRow(keys: Array[Any])
Expand Down