szehon-ho commented on code in PR #49211:
URL: https://github.com/apache/spark/pull/49211#discussion_r1887788795
##########
sql/catalyst/src/test/scala/org/apache/spark/sql/connector/catalog/InMemoryBaseTable.scala:
##########
@@ -648,7 +648,7 @@ case class PartitionInternalRow(keys: Array[Any])
return false
}
// Just compare by reference, not by value
- this.keys == other.asInstanceOf[PartitionInternalRow].keys
+ this.keys sameElements other.asInstanceOf[PartitionInternalRow].keys
Review Comment:
This is to fix the 'non-clustered distribution: V2 function with multiple
args' test below, which now needs to compare the actual partitionRow values.
--
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]