mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-10-27 03:25:08 +00:00
30 lines
966 B
Rust
30 lines
966 B
Rust
#[macro_use]
|
|
extern crate criterion;
|
|
|
|
use bytes::Bytes;
|
|
use criterion::{black_box, Criterion};
|
|
use mason_postgres_protocol::{Decode, NoticeResponse};
|
|
|
|
fn criterion_benchmark(c: &mut Criterion) {
|
|
// NOTE: This is sans header (for direct decoding)
|
|
const NOTICE_RESPONSE: &[u8] = b"SNOTICE\0VNOTICE\0C42710\0Mextension \"uuid-ossp\" already exists, skipping\0Fextension.c\0L1656\0RCreateExtension\0\0";
|
|
|
|
c.bench_function("decode NoticeResponse", |b| {
|
|
b.iter(|| {
|
|
let _ = NoticeResponse::decode(black_box(Bytes::from_static(NOTICE_RESPONSE))).unwrap();
|
|
})
|
|
});
|
|
|
|
c.bench_function("decode NoticeResponse and NoticeResponseFields", |b| {
|
|
b.iter(|| {
|
|
let _ = NoticeResponse::decode(black_box(Bytes::from_static(NOTICE_RESPONSE)))
|
|
.unwrap()
|
|
.fields()
|
|
.unwrap();
|
|
})
|
|
});
|
|
}
|
|
|
|
criterion_group!(benches, criterion_benchmark);
|
|
criterion_main!(benches);
|