Skip to content

Commit

Permalink
Revert "save"
Browse files Browse the repository at this point in the history
This reverts commit 56e3ead.
  • Loading branch information
andygrove committed Nov 26, 2024
1 parent 56e3ead commit 36e6233
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions native/core/src/execution/datafusion/planner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1070,8 +1070,6 @@ impl PhysicalPlanner {
let partitioning = self
.create_partitioning(writer.partitioning.as_ref().unwrap(), child.schema())?;



let shuffle_writer = Arc::new(ShuffleWriterExec::try_new(
Arc::clone(&child.native_plan),
partitioning,
Expand All @@ -1081,11 +1079,10 @@ impl PhysicalPlanner {

Ok((
scans,
Arc::new(SparkPlan::new_with_additional(
Arc::new(SparkPlan::new(
spark_plan.plan_id,
shuffle_writer,
vec![Arc::clone(&child)],
vec![Arc::clone(&child.native_plan)]
)),
))
}
Expand Down

0 comments on commit 36e6233

Please sign in to comment.