Skip to content

Commit

Permalink
udpate benchmark: use &str in native find
Browse files Browse the repository at this point in the history
  • Loading branch information
GoranBrkuljan committed Jan 18, 2025
1 parent ee97664 commit 615e6bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charybdis_bench/benches/orm_vs_native.rs
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ fn bench_orm_vs_native(c: &mut Criterion) {

let res = res.into_rows_result().unwrap();

res.first_row::<BenchUser>().unwrap();
res.first_row::<(Uuid, &str, &str, Timestamp)>().unwrap();
});
});
});
Expand Down

0 comments on commit 615e6bb

Please sign in to comment.