Skip to content

Commit

Permalink
fix(rust): scan schema fix for predicate
Browse files Browse the repository at this point in the history
  • Loading branch information
sherlockbeard committed Sep 9, 2024
1 parent 04b8637 commit 8e611cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/core/src/operations/write.rs
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ async fn execute_non_empty_expr(
let input_dfschema: DFSchema = df_schema.as_ref().clone().try_into()?;

let scan_config = DeltaScanConfigBuilder::new()
.with_schema(df_schema)
.with_schema(snapshot.input_schema()?)
.build(snapshot)?;

let scan = DeltaScanBuilder::new(snapshot, log_store.clone(), &state)
Expand Down

0 comments on commit 8e611cb

Please sign in to comment.