Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
adriangb committed Oct 9, 2024
1 parent 67568ea commit ac339fe
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions datafusion/core/src/physical_optimizer/pruning.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3476,9 +3476,10 @@ mod tests {
}

let schema = Schema::new(vec![Field::new("a", DataType::Int32, true)]);
let schema_with_b = Schema::new(
vec![Field::new("a", DataType::Int32, true), Field::new("b", DataType::Int32, true)],
);
let schema_with_b = Schema::new(vec![
Field::new("a", DataType::Int32, true),
Field::new("b", DataType::Int32, true),
]);

let transform_expr = |expr| {
let expr = logical2physical(&expr, &schema_with_b);
Expand Down

0 comments on commit ac339fe

Please sign in to comment.