Skip to content

Commit

Permalink
UNION to UNION ALL for efficiency (#226)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmmease authored Jan 16, 2023
1 parent f798f74 commit cd0eca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vegafusion-rt-datafusion/src/transform/fold.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ impl TransformTrait for Fold {
})
.collect::<Result<Vec<_>>>()?;

let union_subquery = subqueries.join(" UNION ");
let union_subquery = subqueries.join(" UNION ALL ");
let union_subquery_name = "_union";

let mut selections = input_selection.clone();
Expand Down

0 comments on commit cd0eca3

Please sign in to comment.