Skip to content

Commit

Permalink
[CORE] Fix a variable name typo (apache#7053)
Browse files Browse the repository at this point in the history
  • Loading branch information
ychris78 authored Aug 28, 2024
1 parent 98f1311 commit 3928dc2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ package object transition {
object RowToColumnarLike {
def unapply(plan: SparkPlan): Option[SparkPlan] = {
plan match {
case c2r: RowToColumnarTransition =>
Some(c2r.child)
case r2c: RowToColumnarTransition =>
Some(r2c.child)
case _ => None
}
}
Expand Down

0 comments on commit 3928dc2

Please sign in to comment.