This is an automated email from the ASF dual-hosted git repository.
iffyio pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-sqlparser-rs.git
The following commit(s) were added to refs/heads/main by this push:
new 539db9fb Fix `sqlparser_bench` benchmark compilation (#1625)
539db9fb is described below
commit 539db9fb1a7c2463e2efd41c87137a4c86d15610
Author: Andrew Lamb <[email protected]>
AuthorDate: Sun Dec 29 08:14:06 2024 -0500
Fix `sqlparser_bench` benchmark compilation (#1625)
---
sqlparser_bench/benches/sqlparser_bench.rs | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/sqlparser_bench/benches/sqlparser_bench.rs
b/sqlparser_bench/benches/sqlparser_bench.rs
index 74cac5c9..a7768cbc 100644
--- a/sqlparser_bench/benches/sqlparser_bench.rs
+++ b/sqlparser_bench/benches/sqlparser_bench.rs
@@ -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();
});
});
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]