pub async fn write_deletion_file(
base: &Path,
fragment_id: u64,
read_version: u64,
removed_rows: &DeletionVector,
object_store: &ObjectStore,
) -> Result<Option<DeletionFile>>
Expand description
Write a deletion file for a fragment for a given deletion vector.
Returns the deletion file if one was written. If no deletions were present,
returns Ok(None)
.