fix build when lmdb feature is disabled (fix #800)

This commit is contained in:
Alex 2024-08-25 11:42:37 +02:00
parent 8d62616ec0
commit aa7ce9e97c
Signed by untrusted user: lx
GPG key ID: 0E496D15096376BE

View file

@ -24,6 +24,7 @@ pub struct ConvertDbOpt {
output_engine: Engine,
#[structopt(flatten)]
#[allow(dead_code)]
db_open: OpenDbOpt,
}
@ -52,6 +53,7 @@ pub(crate) fn do_conversion(args: ConvertDbOpt) -> Result<()> {
}
let opt = OpenOpt {
#[cfg(feature = "lmdb")]
lmdb_map_size: args.db_open.lmdb.map_size.map(|x| x.as_u64() as usize),
..Default::default()
};