We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68e15e0 commit f8238b1Copy full SHA for f8238b1
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/catalog/interface.scala
@@ -438,15 +438,6 @@ case class HiveTableRelation(
438
439
def isPartitioned: Boolean = partitionCols.nonEmpty
440
441
- override def equals(relation: Any): Boolean = relation match {
442
- case other: CatalogRelation => tableMeta == other.tableMeta && output == other.output
443
- case _ => false
444
- }
445
-
446
- override def hashCode(): Int = {
447
- Objects.hashCode(tableMeta.identifier, output)
448
449
450
override def doCanonicalize(): LogicalPlan = copy(
451
tableMeta = tableMeta.copy(
452
storage = CatalogStorageFormat.empty,
0 commit comments