-
Notifications
You must be signed in to change notification settings - Fork 241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to Spark 4.0 changing signature of SupportsV1Write.writeWithV1 #11739
Conversation
Signed-off-by: Jason Lowe <[email protected]>
build |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Looks like the build now works, but a number of generated files are out of date for spark 4.0. Do we want to generate those here? or would a separate PR be better for that? |
I went ahead and updated the tools support files for Spark 4.0, since the point of this PR is to fix builds for Spark 4.0 including the premerge build checks. |
build |
After SPARK-50315 SupportsWriteWithV1.writeWithV1 no longer returns a value, causing a build error for Spark4.0. This method simply returned Nil before, so rather than shim this for Spark 4 it updates the code to return Nil directly.
Fixes #11741