Skip to content

Commit

Permalink
chore: Ignore unused variables (apache#306)
Browse files Browse the repository at this point in the history
Co-authored-by: Steve Vaughan Jr <[email protected]>
  • Loading branch information
snmvaughan and Steve Vaughan Jr authored Apr 23, 2024
1 parent f789c21 commit 47526ae
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ object QueryPlanSerde extends Logging with ShimQueryPlanSerde {
None
}

case mul @ Multiply(left, right, _) =>
case mul @ Multiply(left, _, _) =>
if (!supportedDataType(left.dataType)) {
withInfo(mul, s"Unsupported datatype ${left.dataType}")
}
Expand Down Expand Up @@ -663,7 +663,7 @@ object QueryPlanSerde extends Logging with ShimQueryPlanSerde {
withInfo(div, left, right)
None
}
case div @ Divide(left, right, _) =>
case div @ Divide(left, _, _) =>
if (!supportedDataType(left.dataType)) {
withInfo(div, s"Unsupported datatype ${left.dataType}")
}
Expand Down

0 comments on commit 47526ae

Please sign in to comment.