Fix is_aux_file_key

This commit is contained in:
Konstantin Knizhnik
2024-10-11 10:16:02 +03:00
parent 0841fb9b7b
commit fa3dc91fb5

View File

@@ -770,14 +770,9 @@ impl Key {
&& self.field6 == 1
}
<<<<<<< HEAD
#[inline(always)]
pub fn is_aux_file_key(&self) -> bool {
self.field1 == AUX_KEY_PREFIX
=======
pub fn is_aux_file_key(&self) -> bool {
self.field1 = AUX_KEY_PREFIX
>>>>>>> a96135dde (Do not import AUX files)
}
/// Guaranteed to return `Ok()` if [`Self::is_rel_block_key`] returns `true` for `key`.