Skip to content
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

[FEA] Support UpdateCommand for Delta Lake #7280

Closed
jlowe opened this issue Dec 6, 2022 · 0 comments · Fixed by #7652
Closed

[FEA] Support UpdateCommand for Delta Lake #7280

jlowe opened this issue Dec 6, 2022 · 0 comments · Fixed by #7652
Assignees
Labels
feature request New feature or request

Comments

@jlowe
Copy link
Member

jlowe commented Dec 6, 2022

Delta Lake writes can occur in many forms in a query plan. One form is an ExecutedCommandExec with a command of Delta Lake's UpdateCommand. The RAPIDS Accelerator should support Delta Lake writes that use this form in the query plan.

This form appears when using the SQL API to update values in a table, e.g.:

spark.range(10).createOrReplaceTempView("r")
spark.sql("CREATE TABLE d (id BIGINT) USING DELTA")
spark.sql("UPDATE d SET id = id + 100 WHERE id % 2 == 0")
@jlowe jlowe added feature request New feature or request ? - Needs Triage Need team to review and classify labels Dec 6, 2022
@sameerz sameerz removed the ? - Needs Triage Need team to review and classify label Dec 6, 2022
@jlowe jlowe self-assigned this Jan 30, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature request New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants