Skip to content

Commit

Permalink
Fix sqlparser_bench benchmark compilation (#1625)
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb authored Dec 29, 2024
1 parent 77b5bd6 commit 539db9f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sqlparser_bench/benches/sqlparser_bench.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,7 @@ fn basic_queries(c: &mut Criterion) {

group.bench_function("format_large_statement", |b| {
b.iter(|| {
let formatted_query = large_statement.to_string();
assert_eq!(formatted_query, large_statement);
let _formatted_query = large_statement.to_string();
});
});
}
Expand Down

0 comments on commit 539db9f

Please sign in to comment.