fix clippy

This commit is contained in:
Nikita Sivukhin
2025-08-15 17:01:40 +04:00
parent fef4e7e0e6
commit b9a23f3067

View File

@@ -119,7 +119,7 @@ impl DatabaseReplayGenerator {
pk_column_indices: None,
is_ddl_replay: true,
};
return Ok(vec![delete]);
Ok(vec![delete])
}
DatabaseTapeRowChangeType::Insert { after } => {
assert!(after.len() == 5);
@@ -135,7 +135,7 @@ impl DatabaseReplayGenerator {
pk_column_indices: None,
is_ddl_replay: true,
};
return Ok(vec![insert]);
Ok(vec![insert])
}
DatabaseTapeRowChangeType::Update { updates, .. } => {
let Some(updates) = updates else {
@@ -157,7 +157,7 @@ impl DatabaseReplayGenerator {
pk_column_indices: None,
is_ddl_replay: true,
};
return Ok(vec![update]);
Ok(vec![update])
}
}
} else {