Skip to content

Commit e23b98d

Browse files
committed
Make benchmark statement valid
1 parent 355a3bf commit e23b98d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlparser_bench/benches/sqlparser_bench.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ fn basic_queries(c: &mut Criterion) {
5151
let tables = (0..1000)
5252
.map(|n| format!("TABLE_{n}"))
5353
.collect::<Vec<_>>()
54-
.join(" JOIN ");
54+
.join(" CROSS JOIN ");
5555
let where_condition = (0..1000)
5656
.map(|n| format!("COL_{n} = {n}"))
5757
.collect::<Vec<_>>()

0 commit comments

Comments
 (0)