rename merge_nothing to merge_ignore_values

This commit is contained in:
ad hoc
2022-04-05 18:44:35 +02:00
parent 201fea0fda
commit b799f3326b
3 changed files with 7 additions and 7 deletions

View File

@ -279,6 +279,6 @@ pub fn sorter_into_lmdb_database(
}
/// Used when trying to merge readers, but you don't actually care about the values.
pub fn merge_nothing<'a>(_key: &[u8], _values: &[Cow<'a, [u8]>]) -> Result<Cow<'a, [u8]>> {
pub fn merge_ignore_values<'a>(_key: &[u8], _values: &[Cow<'a, [u8]>]) -> Result<Cow<'a, [u8]>> {
Ok(Cow::Owned(Vec::new()))
}