Skip to content

Commit

Permalink
lint strikes again
Browse files Browse the repository at this point in the history
  • Loading branch information
kmitchener committed Aug 29, 2022
1 parent 60607be commit ab0f9ae
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions datafusion/optimizer/src/decorrelate_scalar_subquery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -740,10 +740,7 @@ mod tests {
);

let plan = LogicalPlanBuilder::from(scan_tpch_table("customer"))
.filter(
col("customer.c_custkey")
.eq(scalar_subquery(sq)),
)?
.filter(col("customer.c_custkey").eq(scalar_subquery(sq)))?
.project(vec![col("customer.c_custkey")])?
.build()?;

Expand Down

0 comments on commit ab0f9ae

Please sign in to comment.