remove v1_17

This commit is contained in:
Louis Dureuil
2025-08-18 16:48:37 +02:00
parent 69a84fbfe6
commit fb7ccc0db3
2 changed files with 0 additions and 25 deletions

View File

@ -4,7 +4,6 @@ mod v1_13;
mod v1_14;
mod v1_15;
mod v1_16;
mod v1_17;
use heed::RwTxn;
use new_hannoy::Latest_V1_18_New_Hannoy;

View File

@ -1,24 +0,0 @@
use heed::RwTxn;
use super::UpgradeIndex;
use crate::progress::Progress;
use crate::{Index, Result};
#[allow(non_camel_case_types)]
pub(super) struct Latest_V1_16_To_V1_17_0();
impl UpgradeIndex for Latest_V1_16_To_V1_17_0 {
fn upgrade(
&self,
_wtxn: &mut RwTxn,
_index: &Index,
_original: (u32, u32, u32),
_progress: Progress,
) -> Result<bool> {
Ok(false)
}
fn target_version(&self) -> (u32, u32, u32) {
(1, 17, 0)
}
}