Skip to content

Commit 115e414

Browse files
alambayman-sigma
authored andcommitted
Fix sqlparser_bench benchmark compilation (apache#1625)
1 parent 35d10e0 commit 115e414

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

sqlparser_bench/benches/sqlparser_bench.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,7 @@ fn basic_queries(c: &mut Criterion) {
7878

7979
group.bench_function("format_large_statement", |b| {
8080
b.iter(|| {
81-
let formatted_query = large_statement.to_string();
82-
assert_eq!(formatted_query, large_statement);
81+
let _formatted_query = large_statement.to_string();
8382
});
8483
});
8584
}

0 commit comments

Comments
 (0)