1 parent 96a6b87 commit 418190cCopy full SHA for 418190c
1 file changed
benches/sql.rs
@@ -305,12 +305,8 @@ fn bench_sql_index_operations(c: &mut Criterion) {
305
|| runtime.block_on(setup_database(size)),
306
|(mut glue, _temp_dir)| {
307
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
+ // ProllyStorage does not support GlueSQL CREATE INDEX; keep
+ // this historical benchmark ID on the predicate lookup shape.
314
let result = glue
315
.execute("SELECT * FROM users WHERE age = 25")
316
.await
0 commit comments