Skip to content

Commit 7fcffb5

Browse files
committed
Make UniqueKeyHashedRelation private[joins].
1 parent 18eb214 commit 7fcffb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/core/src/main/scala/org/apache/spark/sql/execution/joins/HashedRelation.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ private[joins] final class GeneralHashedRelation(hashTable: JavaHashMap[Row, Com
4646
* A specialized [[HashedRelation]] that maps key into a single value. This implementation
4747
* assumes the key is unique.
4848
*/
49-
final class UniqueKeyHashedRelation(hashTable: JavaHashMap[Row, Row])
49+
private[joins] final class UniqueKeyHashedRelation(hashTable: JavaHashMap[Row, Row])
5050
extends HashedRelation with Serializable {
5151

5252
override def get(key: Row) = {

0 commit comments

Comments
 (0)