You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Delta Lake writes can occur in many forms in a query plan. One form is an OverwriteByExpressionExecV1. 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 insert into a table with overwrite, e.g.:
spark.range(10).createOrReplaceTempView("r")
spark.sql("CREATE TABLE d (id BIGINT) USING DELTA")
spark.sql("INSERT OVERWRITE d SELECT * FROM r")
The text was updated successfully, but these errors were encountered:
Delta Lake writes can occur in many forms in a query plan. One form is an OverwriteByExpressionExecV1. 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 insert into a table with overwrite, e.g.:
The text was updated successfully, but these errors were encountered: