Skip to content

Commit

Permalink
Update sql/core/src/main/scala/org/apache/spark/sql/execution/datasou…
Browse files Browse the repository at this point in the history
…rces/LogicalRelation.scala

Co-authored-by: Wenchen Fan <cloud0fan@gmail.com>
  • Loading branch information
HeartSaVioR and cloud-fan authored Oct 23, 2024
1 parent 6994766 commit d3b29e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ object LogicalRelation {
* to have specific value to match).
*/
object RelationAndCatalogTable {
def unapply(plan: LogicalPlan): Option[(LogicalRelation, BaseRelation, Option[CatalogTable])] = {
def unapply(plan: LogicalRelation): Option[(BaseRelation, Option[CatalogTable])] = {
plan match {
case l: LogicalRelation => Some(l, l.relation, l.catalogTable)

Expand Down

0 comments on commit d3b29e2

Please sign in to comment.