chore: rename benchmark

pull/24376/head
Edd Robinson 2021-04-29 19:18:13 +01:00
parent ac5e51b955
commit c8e2c9224e
3 changed files with 9 additions and 1 deletions

View File

@ -46,5 +46,5 @@ name = "string"
harness = false
[[bench]]
name = "row_group"
name = "read_group"
harness = false

View File

@ -0,0 +1,8 @@
mod read_group;
use criterion::{criterion_group, criterion_main};
use read_group::read_group;
criterion_group!(benches, read_group,);
criterion_main!(benches);