Skip to content

Commit 418190c

Browse files
fix: avoid unsupported sql index benchmark (#226)
1 parent 96a6b87 commit 418190c

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

benches/sql.rs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -305,12 +305,8 @@ fn bench_sql_index_operations(c: &mut Criterion) {
305305
|| runtime.block_on(setup_database(size)),
306306
|(mut glue, _temp_dir)| {
307307
runtime.block_on(async {
308-
// Create index
309-
glue.execute("CREATE INDEX idx_users_age ON users(age)")
310-
.await
311-
.unwrap();
312-
313-
// Query using index
308+
// ProllyStorage does not support GlueSQL CREATE INDEX; keep
309+
// this historical benchmark ID on the predicate lookup shape.
314310
let result = glue
315311
.execute("SELECT * FROM users WHERE age = 25")
316312
.await

0 commit comments

Comments
 (0)