Skip to content

Commit

Permalink
chore: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ion-elgreco committed Aug 6, 2024
1 parent 12d722d commit c1889d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/core/src/operations/write.rs
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ async fn prepare_predicate_actions(
find_files(snapshot, log_store.clone(), &state, Some(predicate.clone())).await?;

let mut actions = execute_non_empty_expr(
&snapshot,
snapshot,
log_store,
state,
partition_columns,
Expand Down Expand Up @@ -775,7 +775,7 @@ async fn execute_non_empty_expr_cdc_all_actions(
let input_schema = snapshot.input_schema()?;
let input_dfschema: DFSchema = input_schema.clone().as_ref().clone().try_into()?;

Ok(execute_non_empty_expr_cdc(
execute_non_empty_expr_cdc(
snapshot,
log_store,
state,
Expand All @@ -786,7 +786,7 @@ async fn execute_non_empty_expr_cdc_all_actions(
writer_properties,
writer_stats_config,
)
.await?)
.await
}

impl std::future::IntoFuture for WriteBuilder {
Expand Down

0 comments on commit c1889d2

Please sign in to comment.