Skip to content

Commit

Permalink
filtering works now
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Oct 28, 2022
1 parent 78e1e57 commit 3ab17f3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions benchmarks/src/bin/parquet_filter_pushdown.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,7 @@ async fn run_benchmarks(
disjunction([
col("request_method").not_eq(lit("GET")),
col("response_status").eq(lit(400_u16)),
// TODO this fails in the FilterExec with Error: Internal("The type of Dictionary(Int32, Utf8) = Utf8 of binary physical should be same")
// col("service").eq(lit("backend")),
col("service").eq(lit("backend")),
])
.unwrap(),
// Filter everything
Expand Down

0 comments on commit 3ab17f3

Please sign in to comment.