mdbx++: fix copy&paste typo inside mdbx::cursor::find_multivalue().

This commit is contained in:
Леонид Юрьев (Leonid Yuriev) 2022-03-24 10:18:54 +03:00
parent 43070c7b26
commit d13534967a

View File

@ -5667,7 +5667,7 @@ inline cursor::move_result cursor::move(move_operation operation,
inline cursor::move_result cursor::find_multivalue(const slice &key, inline cursor::move_result cursor::find_multivalue(const slice &key,
const slice &value, const slice &value,
bool throw_notfound) { bool throw_notfound) {
return move(key_exact, key, value, throw_notfound); return move(multi_find_pair, key, value, throw_notfound);
} }
inline cursor::move_result cursor::lower_bound_multivalue(const slice &key, inline cursor::move_result cursor::lower_bound_multivalue(const slice &key,