Skip to content

Commit

Permalink
Fix ambiguous variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
yuqi committed Aug 28, 2024
1 parent de51f7c commit d2d4364
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 d2d4364

Please sign in to comment.