Skip to content

Commit

Permalink
[SPARK-44913][SQL][FOLLOWUP] DS V2 supports push down V2 UDF that has…
Browse files Browse the repository at this point in the history
… magic method

### What changes were proposed in this pull request?

This is follow up apache#42612 and to address the comment apache#42612 (comment)

### Why are the changes needed?

To address comments.

### Does this PR introduce _any_ user-facing change?

No

### How was this patch tested?

Existing UTs.

### Was this patch authored or co-authored using generative AI tooling?

No

Closes apache#43262 from ConeyLiu/42612-followup.

Authored-by: Xianyang Liu <[email protected]>
Signed-off-by: Wenchen Fan <[email protected]>
  • Loading branch information
ConeyLiu authored and cloud-fan committed Oct 9, 2023
1 parent 89acebb commit ffc6994
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ case class StaticInvoke(
if (scalarFunction.nonEmpty) {
super.stringArgs
} else {
super.stringArgs.take(8)
super.stringArgs.toSeq.dropRight(1).iterator
}
}
}
Expand Down

0 comments on commit ffc6994

Please sign in to comment.