mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-22 16:19:27 +08:00
18 lines
541 B
Rust
18 lines
541 B
Rust
use bencher::{benchmark_group, benchmark_main, Bencher};
|
|
use rusqlite::Connection;
|
|
|
|
fn bench_execute(b: &mut Bencher) {
|
|
let db = Connection::open_in_memory().unwrap();
|
|
let sql = "PRAGMA user_version=1";
|
|
b.iter(|| db.execute(sql, []).unwrap());
|
|
}
|
|
|
|
fn bench_execute_batch(b: &mut Bencher) {
|
|
let db = Connection::open_in_memory().unwrap();
|
|
let sql = "PRAGMA user_version=1";
|
|
b.iter(|| db.execute_batch(sql).unwrap());
|
|
}
|
|
|
|
benchmark_group!(exec_benches, bench_execute, bench_execute_batch);
|
|
benchmark_main!(exec_benches);
|