Skip to content

Commit

Permalink
fix: spark integration
Browse files Browse the repository at this point in the history
  • Loading branch information
furqaankhan committed Oct 18, 2024
1 parent ef0959c commit 90d5e90
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1729,7 +1729,7 @@ case class ST_IsValidReason(inputExpressions: Seq[Expression])
case class ST_Scale(inputExpressions: Seq[Expression])
extends InferredExpression(inferrableFunction3(Functions.scale)) {

override protected def withNewChildrenInternal(newChildren: IndexedSeq[Expression]) =
protected def withNewChildrenInternal(newChildren: IndexedSeq[Expression]) =
copy(inputExpressions = newChildren)
}

Expand All @@ -1738,7 +1738,7 @@ case class ST_ScaleGeom(inputExpressions: Seq[Expression])
inferrableFunction3(Functions.scaleGeom),
inferrableFunction2(Functions.scaleGeom)) {

override protected def withNewChildrenInternal(newChildren: IndexedSeq[Expression]) =
protected def withNewChildrenInternal(newChildren: IndexedSeq[Expression]) =
copy(inputExpressions = newChildren)
}

Expand Down

0 comments on commit 90d5e90

Please sign in to comment.