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 and shamirchen committed Oct 14, 2024
1 parent 1551dac commit 0c678f8
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 0c678f8

Please sign in to comment.