cloud-fan commented on code in PR #41990:
URL: https://github.com/apache/spark/pull/41990#discussion_r1264875352
##########
sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/v2/BatchScanExec.scala:
##########
@@ -241,3 +243,24 @@ case class BatchScanExec(
s"BatchScan ${table.name()}".trim
}
}
+
+case class StoragePartitionJoinParams(
+ keyGroupedPartitioning: Option[Seq[Expression]] = None,
+ commonPartitionValues: Option[Seq[(InternalRow, Int)]] = None,
+ applyPartialClustering: Boolean = false,
+ replicatePartitions: Boolean = false) {
+ override def equals(other: Any): Boolean = other match {
Review Comment:
This is not new in this PR, but it's great if we can add some comments about
why we exclude `keyGroupedPartitioning` in the comparison. cc @sunchao
--
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]